Change grfmsg to be a macro which checks the debug level first

This is to avoid doing a sprintf when the result will be thrown away
This commit is contained in:
Jonathan G Rennison
2018-05-27 22:28:07 +01:00
parent 0d0d55f81d
commit 641e877441
3 changed files with 5 additions and 2 deletions

View File

@@ -377,7 +377,7 @@ static GRFLineToSpriteOverride _grf_line_to_action6_sprite_override;
* @param severity debugging severity level, see debug.h
* @param str message in printf() format
*/
void CDECL grfmsg(int severity, const char *str, ...)
void CDECL _intl_grfmsg(int severity, const char *str, ...)
{
char buf[1024];
va_list va;