From 2862253f128ab7af846c28de3fe69a9de0cd929c Mon Sep 17 00:00:00 2001 From: "Unknown W. Brackets" Date: Fri, 27 May 2016 20:55:44 -0700 Subject: [PATCH] Avoid showing all slots in a row when cycling. This was longer now, so more annoying. Better to sync with the preview. --- UI/NativeApp.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/UI/NativeApp.cpp b/UI/NativeApp.cpp index 9d0344eb74..1ece9d814b 100644 --- a/UI/NativeApp.cpp +++ b/UI/NativeApp.cpp @@ -770,7 +770,7 @@ void HandleGlobalMessage(const std::string &msg, const std::string &value) { I18NCategory *sy = GetI18NCategory("System"); std::string msg = StringFromFormat("%s: %d", sy->T("Savestate Slot"), SaveState::GetCurrentSlot() + 1); // Show for the same duration as the preview. - osm.Show(msg, 2.0f); + osm.Show(msg, 2.0f, 0xFFFFFF, -1, true, "savestate_slot"); } }