mirror of
https://github.com/DrBeef/Raze.git
synced 2024-11-15 08:52:00 +00:00
Fix something stupid I noticed
git-svn-id: https://svn.eduke32.com/eduke32@6295 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
parent
0f788963b6
commit
1e06189f03
1 changed files with 2 additions and 2 deletions
|
@ -87,7 +87,7 @@ void G_ShowParameterHelp(void)
|
|||
;
|
||||
#ifdef WM_MSGBOX_WINDOW
|
||||
Bsnprintf(tempbuf, sizeof(tempbuf), HEAD2 " %s", s_buildRev);
|
||||
wm_msgbox(tempbuf, "%s", s);
|
||||
wm_msgbox(tempbuf, s);
|
||||
#else
|
||||
initprintf("%s\n", s);
|
||||
#endif
|
||||
|
@ -123,7 +123,7 @@ void G_ShowDebugHelp(void)
|
|||
;
|
||||
#ifdef WM_MSGBOX_WINDOW
|
||||
Bsnprintf(tempbuf, sizeof(tempbuf), HEAD2 " %s", s_buildRev);
|
||||
wm_msgbox(tempbuf, "%s", s);
|
||||
wm_msgbox(tempbuf, s);
|
||||
#else
|
||||
initprintf("%s\n", s);
|
||||
#endif
|
||||
|
|
Loading…
Reference in a new issue