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.
This commit is contained in:
RedDevilus 2022-10-10 12:41:57 +02:00 committed by refractionpcsx2
parent 37c89ffba3
commit 356b5c1750
1 changed files with 1 additions and 1 deletions

View File

@ -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)