- remove doomtypes.h include from files.h.

This commit is contained in:
Christoph Oelckers 2019-08-20 22:47:30 +02:00
commit b1953585fe
10 changed files with 12 additions and 2 deletions

View file

@ -59,7 +59,7 @@ void DecompressorBase::DecompressionError(const char *error, ...) const
char errortext[MAX_ERRORTEXT];
va_start(argptr, error);
myvsnprintf(errortext, MAX_ERRORTEXT, error, argptr);
vsnprintf(errortext, MAX_ERRORTEXT, error, argptr);
va_end(argptr);
if (ErrorCallback != nullptr) ErrorCallback(errortext);