mirror of https://github.com/PCSX2/pcsx2.git
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:
parent
37c89ffba3
commit
356b5c1750
|
@ -3848,7 +3848,7 @@ u32 FullscreenUI::PopulateSaveStateListEntries(const std::string& title, const s
|
||||||
{
|
{
|
||||||
ClearSaveStateEntryList();
|
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;
|
SaveStateListEntry li;
|
||||||
if (InitializeSaveStateListEntry(&li, title, serial, crc, i) || !s_save_state_selector_loading)
|
if (InitializeSaveStateListEntry(&li, title, serial, crc, i) || !s_save_state_selector_loading)
|
||||||
|
|
Loading…
Reference in New Issue