diff --git a/JA2.suo b/JA2.suo index b4e5faa1..ea021351 100644 Binary files a/JA2.suo and b/JA2.suo differ diff --git a/SaveLoadScreen.cpp b/SaveLoadScreen.cpp index e553e225..83c458cb 100644 --- a/SaveLoadScreen.cpp +++ b/SaveLoadScreen.cpp @@ -640,7 +640,13 @@ Removed so that the user can click on it and get displayed a message that the qu { memset( &SaveGameHeader, 0, sizeof( SAVED_GAME_HEADER ) ); gbSaveGameSelectedLocation[ gbSelectedSaveLocation ] = SLG_UNSELECTED_SLOT_GRAPHICS_NUMBER; - gbSaveGameArray[ gbSelectedSaveLocation ] = FALSE; + + // WANNE: NEW + if (gbSelectedSaveLocation != SAVE__END_TURN_NUM) + { + gbSaveGameArray[ gbSelectedSaveLocation ] = FALSE; + } + gbSelectedSaveLocation = gGameSettings.bLastSavedGameSlot = -1; }