mirror of
https://github.com/HarbourMasters/Shipwright
synced 2026-07-07 06:05:37 -04:00
fix incorrect __VA_ARGS__ use in lusprintf version of osSyncPrintf (#5510)
This commit is contained in:
@@ -15,7 +15,7 @@ extern "C"
|
||||
#include <soh/Enhancements/randomizer/randomizer_inf.h>
|
||||
|
||||
#if defined(INCLUDE_GAME_PRINTF) && defined(_DEBUG)
|
||||
#define osSyncPrintf(fmt, ...) lusprintf(__FILE__, __LINE__, 0, fmt, __VA_ARGS__)
|
||||
#define osSyncPrintf(fmt, ...) lusprintf(__FILE__, __LINE__, 0, fmt, ##__VA_ARGS__)
|
||||
#else
|
||||
#define osSyncPrintf(fmt, ...) osSyncPrintfUnused(fmt, ##__VA_ARGS__)
|
||||
#endif
|
||||
|
||||
Reference in New Issue
Block a user