mirror of
https://github.com/RetroDECK/Duckstation.git
synced 2024-11-26 15:45:42 +00:00
ImGuiOverlays: Fix incorrect animation when opening state selector
This commit is contained in:
parent
af2042e713
commit
ad41c81fa8
|
@ -740,8 +740,6 @@ void SaveStateSelectorUI::Open(float open_time /* = DEFAULT_OPEN_TIME */)
|
||||||
if (!s_placeholder_texture)
|
if (!s_placeholder_texture)
|
||||||
s_placeholder_texture = ImGuiFullscreen::LoadTexture("no-save.png");
|
s_placeholder_texture = ImGuiFullscreen::LoadTexture("no-save.png");
|
||||||
|
|
||||||
s_scroll_animated.Reset(0.0f);
|
|
||||||
s_background_animated.Reset(0.0f);
|
|
||||||
s_open = true;
|
s_open = true;
|
||||||
RefreshList(serial);
|
RefreshList(serial);
|
||||||
RefreshHotkeyLegend();
|
RefreshHotkeyLegend();
|
||||||
|
@ -808,6 +806,8 @@ void SaveStateSelectorUI::Clear()
|
||||||
|
|
||||||
s_current_slot = 0;
|
s_current_slot = 0;
|
||||||
s_current_slot_global = false;
|
s_current_slot_global = false;
|
||||||
|
s_scroll_animated.Reset(0.0f);
|
||||||
|
s_background_animated.Reset(0.0f);
|
||||||
}
|
}
|
||||||
|
|
||||||
void SaveStateSelectorUI::ClearList()
|
void SaveStateSelectorUI::ClearList()
|
||||||
|
|
Loading…
Reference in a new issue