From 356b5c1750500e4c7e5ad8f73a88f7c31f2a1a1f Mon Sep 17 00:00:00 2001 From: RedDevilus Date: Mon, 10 Oct 2022 12:41:57 +0200 Subject: [PATCH] Qt: Consistent save state list in big picture In the WX days we had savestate 0-9 where 0 was the first. Then Qt came around where savestate 0-10 existed for Big Picture and 1-10 for the main listing this can cause headaches where you cycle through savestates or just save to the current slot 0 and it doesn't show up in the main window. --- pcsx2/Frontend/FullscreenUI.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pcsx2/Frontend/FullscreenUI.cpp b/pcsx2/Frontend/FullscreenUI.cpp index 302cce492a..67fc271ee6 100644 --- a/pcsx2/Frontend/FullscreenUI.cpp +++ b/pcsx2/Frontend/FullscreenUI.cpp @@ -3848,7 +3848,7 @@ u32 FullscreenUI::PopulateSaveStateListEntries(const std::string& title, const s { ClearSaveStateEntryList(); - for (s32 i = 0; i <= VMManager::NUM_SAVE_STATE_SLOTS; i++) + for (s32 i = 1; i <= VMManager::NUM_SAVE_STATE_SLOTS; i++) { SaveStateListEntry li; if (InitializeSaveStateListEntry(&li, title, serial, crc, i) || !s_save_state_selector_loading)