summaryrefslogtreecommitdiffhomepage
path: root/src/autojump.c
diff options
context:
space:
mode:
authorMichael Smith <mikesmiffy128@gmail.com>2022-07-14 21:42:04 +0100
committerMichael Smith <mikesmiffy128@gmail.com>2022-07-23 18:51:28 +0100
commit4d1a3a021f1adbd493dbdb4858dc20066af4e0aa (patch)
treed2c1b76d63dd6c9a7b74ed097ddbe6f3029586a4 /src/autojump.c
parent3e435bd8e7a64148f7acc9c8bc2fe0493eb09cdf (diff)
Change some warnings to errors
Diffstat (limited to 'src/autojump.c')
-rw-r--r--src/autojump.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/autojump.c b/src/autojump.c
index 33b31b8..284dd85 100644
--- a/src/autojump.c
+++ b/src/autojump.c
@@ -72,11 +72,11 @@ static bool unprot(void *gm) {
bool autojump_init(void) {
// TODO(featgen): auto-check these factories
if (!factory_client || !factory_server) {
- errmsg_warnx("missing required factories");
+ errmsg_errorx("missing required factories");
return false;
}
if (!has_vtidx_CheckJumpButton || !has_off_mv) {
- errmsg_warnx("missing gamedata entries for this engine");
+ errmsg_errorx("missing gamedata entries for this engine");
return false;
}