mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-12-24 10:40:46 +00:00
git-svn-id: https://svn.eduke32.com/eduke32@298 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
parent
ac7ca6aa75
commit
55392349bb
3 changed files with 6 additions and 5 deletions
|
@ -88,7 +88,7 @@ static SDL_Surface * loadappicon(void);
|
|||
|
||||
int wm_msgbox(char *name, char *fmt, ...)
|
||||
{
|
||||
char buf[1000];
|
||||
char buf[2048];
|
||||
va_list va;
|
||||
|
||||
va_start(va,fmt);
|
||||
|
@ -109,7 +109,7 @@ int wm_msgbox(char *name, char *fmt, ...)
|
|||
|
||||
int wm_ynbox(char *name, char *fmt, ...)
|
||||
{
|
||||
char buf[1000];
|
||||
char buf[2048];
|
||||
char c;
|
||||
va_list va;
|
||||
int r;
|
||||
|
|
|
@ -193,7 +193,7 @@ int win_checkinstance(void)
|
|||
//
|
||||
int wm_msgbox(char *name, char *fmt, ...)
|
||||
{
|
||||
char buf[1000];
|
||||
char buf[2048];
|
||||
va_list va;
|
||||
|
||||
va_start(va,fmt);
|
||||
|
@ -205,7 +205,7 @@ int wm_msgbox(char *name, char *fmt, ...)
|
|||
}
|
||||
int wm_ynbox(char *name, char *fmt, ...)
|
||||
{
|
||||
char buf[1000];
|
||||
char buf[2048];
|
||||
va_list va;
|
||||
int r;
|
||||
|
||||
|
|
|
@ -7695,7 +7695,8 @@ void comlinehelp(char **argv)
|
|||
#if !defined(_WIN32)
|
||||
"-usecwd\t\tRead game data and configuration file from working directory\n"
|
||||
#endif
|
||||
"-condebug, -z#\tLine-by-line CON compilation debugging";
|
||||
"-condebug, -z#\tLine-by-line CON compilation debugging"
|
||||
;
|
||||
wm_msgbox(apptitle,s);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue