From e2fab16fd47dc0a995957d339ea9e055441c8873 Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Thu, 5 Mar 2020 20:28:37 +0100 Subject: [PATCH] - fixed crashes with VM asserts. No idea what went wrong here - formatting the string in two stages works fine, though. --- source/duke3d/src/gameexec.h | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/source/duke3d/src/gameexec.h b/source/duke3d/src/gameexec.h index 55939578f..577a82398 100644 --- a/source/duke3d/src/gameexec.h +++ b/source/duke3d/src/gameexec.h @@ -106,13 +106,15 @@ void VM_DrawTileSmall(int32_t x, int32_t y, int32_t tilenum, int32_t shade, int3 #define CON_ERRPRINTF(Text, ...) do { \ + FStringf str(Text, __VA_ARGS__); \ vm.flags |= VM_RETURN; \ - OSD_Printf("Line %d, %s: " Text, VM_DECODE_LINE_NUMBER(g_tw), VM_GetKeywordForID(VM_DECODE_INST(g_tw)), ## __VA_ARGS__); \ + OSD_Printf("Line %d, %s: %s", VM_DECODE_LINE_NUMBER(g_tw), VM_GetKeywordForID(VM_DECODE_INST(g_tw)), str.GetChars()); \ } while (0) #define CON_CRITICALERRPRINTF(Text, ...) do { \ + FStringf str(Text, __VA_ARGS__); \ vm.flags |= VM_RETURN; \ - I_Error("Line %d, %s: " Text, VM_DECODE_LINE_NUMBER(g_tw), VM_GetKeywordForID(VM_DECODE_INST(g_tw)), ## __VA_ARGS__); \ + I_Error("Line %d, %s: %s", VM_DECODE_LINE_NUMBER(g_tw), VM_GetKeywordForID(VM_DECODE_INST(g_tw)), str.GetChars()); \ } while (0) void G_GetTimeDate(int32_t * pValues);