mirror of
https://github.com/ZDoom/Raze.git
synced 2024-11-16 09:21:36 +00:00
safer sprintf
git-svn-id: https://svn.eduke32.com/eduke32@1911 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
parent
51fb860650
commit
924dccca21
1 changed files with 2 additions and 2 deletions
|
@ -9051,7 +9051,7 @@ static void G_CompileScripts(void)
|
|||
pathsearchmode = 1;
|
||||
if (g_skipDefaultCons == 0)
|
||||
{
|
||||
Bsprintf(g_scriptNamePtr,defaultconfile());
|
||||
Bsprintf(g_scriptNamePtr,"%s",defaultconfile());
|
||||
}
|
||||
C_Compile(g_scriptNamePtr);
|
||||
|
||||
|
@ -9059,7 +9059,7 @@ static void G_CompileScripts(void)
|
|||
{
|
||||
if (g_skipDefaultCons == 0)
|
||||
{
|
||||
Bsprintf(g_scriptNamePtr,defaultconfile());
|
||||
Bsprintf(g_scriptNamePtr,"%s",defaultconfile());
|
||||
}
|
||||
C_Compile(g_scriptNamePtr);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue