diff options
author | Michael Smith <mikesmiffy128@gmail.com> | 2022-07-14 21:42:04 +0100 |
---|---|---|
committer | Michael Smith <mikesmiffy128@gmail.com> | 2022-07-23 18:51:28 +0100 |
commit | 4d1a3a021f1adbd493dbdb4858dc20066af4e0aa (patch) | |
tree | d2c1b76d63dd6c9a7b74ed097ddbe6f3029586a4 /src/demorec.c | |
parent | 3e435bd8e7a64148f7acc9c8bc2fe0493eb09cdf (diff) |
Change some warnings to errors
Diffstat (limited to 'src/demorec.c')
-rw-r--r-- | src/demorec.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/demorec.c b/src/demorec.c index a0c85a1..17b1d08 100644 --- a/src/demorec.c +++ b/src/demorec.c @@ -209,7 +209,7 @@ static inline bool find_recmembers(void *stoprecording) { bool demorec_init(void) { if (!has_vtidx_StopRecording) { - errmsg_warnx("missing gamedata entries for this engine"); + errmsg_errorx("missing gamedata entries for this engine"); return false; } cmd_record = con_findcmd("record"); @@ -346,7 +346,7 @@ DECL_VFUNC_DYN(int, GetEngineBuildNumber) bool demorec_custom_init(void) { if (!has_vtidx_GetEngineBuildNumber || !has_vtidx_RecordPacket) { - errmsg_warnx("custom: missing gamedata entries for this engine"); + errmsg_errorx("custom: missing gamedata entries for this engine"); return false; } |