mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2024-12-01 08:31:14 +00:00
- fixed log text output to console
src/p_user.cpp:429:42: warning: data argument not used by format string [-Wformat-extra-args]
This commit is contained in:
parent
ac9a428196
commit
540e180fb1
1 changed files with 1 additions and 1 deletions
|
@ -426,7 +426,7 @@ void player_t::SetLogText (const char *text)
|
||||||
if (mo && mo->CheckLocalView())
|
if (mo && mo->CheckLocalView())
|
||||||
{
|
{
|
||||||
// Print log text to console
|
// Print log text to console
|
||||||
Printf(PRINT_NONOTIFY, TEXTCOLOR_GOLD, "%s\n", LogText[0] == '$' ? GStrings(text + 1) : text);
|
Printf(PRINT_NONOTIFY, TEXTCOLOR_GOLD "%s\n", LogText[0] == '$' ? GStrings(text + 1) : text);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue