- moved sc_man and palettecontainer to the 'common' folder.

This commit is contained in:
Christoph Oelckers 2020-04-11 13:46:15 +02:00
commit c713850dac
18 changed files with 71 additions and 59 deletions

View file

@ -53,7 +53,6 @@ void I_DebugPrint(const char *cp)
#endif
#include "engineerrors.h"
#include "printf.h"
//==========================================================================
//
@ -70,7 +69,7 @@ void I_Error(const char *error, ...)
char errortext[MAX_ERRORTEXT];
va_start(argptr, error);
myvsnprintf(errortext, MAX_ERRORTEXT, error, argptr);
vsnprintf(errortext, MAX_ERRORTEXT, error, argptr);
va_end(argptr);
I_DebugPrint(errortext);
@ -97,7 +96,7 @@ void I_FatalError(const char *error, ...)
char errortext[MAX_ERRORTEXT];
va_list argptr;
va_start(argptr, error);
myvsnprintf(errortext, MAX_ERRORTEXT, error, argptr);
vsnprintf(errortext, MAX_ERRORTEXT, error, argptr);
va_end(argptr);
I_DebugPrint(errortext);