mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-11 07:11:39 +00:00
- fixed build with GCC and Clang
source/duke3d/src/gameexec.h:109:35: error: expected primary-expression before ‘)’ token source/duke3d/src/gameexec.h:115:35: error: expected primary-expression before ‘)’ token
This commit is contained in:
parent
b3c1d5001e
commit
12a655b58f
1 changed files with 2 additions and 2 deletions
|
@ -106,13 +106,13 @@ 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__); \
|
||||
FStringf str(Text, ## __VA_ARGS__); \
|
||||
vm.flags |= VM_RETURN; \
|
||||
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__); \
|
||||
FStringf str(Text, ## __VA_ARGS__); \
|
||||
vm.flags |= VM_RETURN; \
|
||||
I_Error("Line %d, %s: %s", VM_DECODE_LINE_NUMBER(g_tw), VM_GetKeywordForID(VM_DECODE_INST(g_tw)), str.GetChars()); \
|
||||
} while (0)
|
||||
|
|
Loading…
Reference in a new issue