summaryrefslogtreecommitdiffhomepage
path: root/src/ent.c
diff options
context:
space:
mode:
authorMichael Smith <mikesmiffy128@gmail.com>2022-06-02 01:26:45 +0100
committerMichael Smith <mikesmiffy128@gmail.com>2022-06-02 01:30:26 +0100
commit3ebe43eb75806990a402aafd5858de615d5c1cca (patch)
tree16edcb4b560520ad5225673e1a8ad45facc20c40 /src/ent.c
parent74563bfb8c506150172b9bbf73d828372add3394 (diff)
Solve the error logging situation
Diffstat (limited to 'src/ent.c')
-rw-r--r--src/ent.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ent.c b/src/ent.c
index 2e47208..392fceb 100644
--- a/src/ent.c
+++ b/src/ent.c
@@ -16,8 +16,8 @@
#include <stdbool.h>
-#include "con_.h"
#include "engineapi.h"
+#include "errmsg.h"
#include "gamedata.h"
#include "gametype.h"
#include "intdefs.h"
@@ -52,7 +52,7 @@ bool ent_init(void) {
edicts = mem_offset(globalvars, off_edicts);
return true;
}
- con_warn("ent: not implemented for this engine\n");
+ errmsg_warnx("not implemented for this engine");
return false;
}