1
0
mirror of synced 2025-01-20 17:48:51 +01:00

dummy info func for non-debug

This commit is contained in:
Poliwrath 2021-08-26 21:24:34 -04:00 committed by GitHub
parent 739b2a25d2
commit f6bb0c6f7c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -31,6 +31,10 @@ void info(bool unused, const char* format, ...)
OutputDebugStringA(buffer); OutputDebugStringA(buffer);
} }
#else
void info(bool unused, const char* format, ...)
{
}
#endif #endif
int strcmp(const char* str1, const char* str2, bool csensitive) int strcmp(const char* str1, const char* str2, bool csensitive)
{ {