We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 895c0aa commit e485c07Copy full SHA for e485c07
prboom2/src/m_menu.c
@@ -1099,7 +1099,7 @@ static void M_DrawSave(void)
1099
for (i = 0 ; i < load_end ; i++)
1100
{
1101
M_DrawSaveLoadBorder(LoadDef.x,LoadDef.y+LINEHEIGHT*i);
1102
- M_WriteText(LoadDef.x,LoadDef.y+LINEHEIGHT*i,savegamestrings[i], CR_DEFAULT);
+ M_WriteText(LoadDef.x,LoadDef.y+LINEHEIGHT*i,savegamestrings[i], current_page == 0 ? CR_DARKEN : CR_DEFAULT);
1103
}
1104
1105
M_DrawTabs(saves_pages, 5, 145);
@@ -1147,6 +1147,9 @@ static inline dboolean IsMapName(char *str)
1147
1148
static void M_SaveSelect(int choice)
1149
1150
+ if (current_save_page == 0)
1151
+ return;
1152
+
1153
// we are going to be intercepting all chars
1154
saveStringEnter = 1;
1155
0 commit comments