Merge branch 'blankart-dev' into openalclassic
This commit is contained in:
commit
8c82dcee90
2 changed files with 9 additions and 9 deletions
|
|
@ -1861,7 +1861,7 @@ void D_SRB2Main(void)
|
|||
if (WADNAMECHECK(word))
|
||||
{
|
||||
if (!(pstartmap = wadnamemap))
|
||||
I_Error("Bad '%s' level warp.\n"
|
||||
I_Error("Bad '%s' level warp; pstartmap (%d) != wadnamemap (%d)).\n"
|
||||
#if defined (_WIN32)
|
||||
"Are you using MSDOS 8.3 filenames in Zone Builder?\n"
|
||||
"\n"
|
||||
|
|
@ -1869,7 +1869,7 @@ void D_SRB2Main(void)
|
|||
"Go to the Testing tab and make sure \"Use short paths and file names\" is turned off.\n"
|
||||
"(The option is hidden by default. Check \"Customize parameters\" to show it.)\n"
|
||||
#endif
|
||||
, word);
|
||||
, word, pstartmap, wadnamemap);
|
||||
}
|
||||
else
|
||||
{
|
||||
|
|
|
|||
|
|
@ -413,13 +413,6 @@ void Y_IntermissionDrawer(void)
|
|||
else // in case nothing else works...
|
||||
V_DrawPatchFill(bgtile);
|
||||
|
||||
if (renderisnewtic)
|
||||
{
|
||||
LUA_HUD_ClearDrawList(luahuddrawlist_intermission);
|
||||
LUA_HookHUD(luahuddrawlist_intermission, HUD_HOOK(intermission));
|
||||
}
|
||||
LUA_HUD_DrawList(luahuddrawlist_intermission);
|
||||
|
||||
if (!LUA_HudEnabled(hud_intermissiontally))
|
||||
goto skiptallydrawer;
|
||||
|
||||
|
|
@ -730,6 +723,13 @@ skiptallydrawer:
|
|||
if ((speedscramble != -1) && (speedscramble != gamespeed))
|
||||
V_DrawCenteredString(BASEVIDWIDTH/2, BASEVIDHEIGHT-24, hilicol|V_ALLOWLOWERCASE|V_SNAPTOBOTTOM,
|
||||
va(M_GetText("Next race will be %s Speed!"), kartspeed_cons_t[1+speedscramble].strvalue));
|
||||
|
||||
if (renderisnewtic)
|
||||
{
|
||||
LUA_HUD_ClearDrawList(luahuddrawlist_intermission);
|
||||
LUA_HookHUD(luahuddrawlist_intermission, HUD_HOOK(intermission));
|
||||
}
|
||||
LUA_HUD_DrawList(luahuddrawlist_intermission);
|
||||
}
|
||||
|
||||
//
|
||||
|
|
|
|||
Loading…
Reference in a new issue