Use a custom naming convention for VKDoom-only stuff

This commit is contained in:
nashmuhandes 2023-08-10 02:56:45 +08:00 committed by Magnus Norddahl
commit 89b42e3e97
12 changed files with 41 additions and 39 deletions

View file

@ -183,7 +183,7 @@ bool M_SetSpecialMenu(FName& menu, int param)
return false;
}
if ((primaryLevel->flags9 & LEVEL9_NOUSERSAVE))
if ((primaryLevel->vkdflags & VKDLEVELFLAG_NOUSERSAVE))
{
M_StartMessage(GStrings("SAVEDEAD"), 1);
return false;
@ -402,7 +402,7 @@ CCMD (quicksave)
return;
}
if ((primaryLevel->flags9 & LEVEL9_NOUSERSAVE))
if ((primaryLevel->vkdflags & VKDLEVELFLAG_NOUSERSAVE))
return;
if (gamestate != GS_LEVEL)