diff --git a/polymer/eduke32/source/game.c b/polymer/eduke32/source/game.c index 476959e60..c1ecb2e28 100644 --- a/polymer/eduke32/source/game.c +++ b/polymer/eduke32/source/game.c @@ -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); }