mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2026-08-03 18:26:49 -05:00
Merge pull request #13557 from LillyJadeKatrin/pause-bugfix
AchievementManager: Always allow pausing if game not loaded
This commit is contained in:
commit
12010ebf78
|
|
@ -348,6 +348,8 @@ void AchievementManager::DoFrame()
|
|||
|
||||
bool AchievementManager::CanPause()
|
||||
{
|
||||
if (!IsGameLoaded())
|
||||
return true;
|
||||
u32 frames_to_next_pause = 0;
|
||||
bool can_pause = rc_client_can_pause(m_client, &frames_to_next_pause);
|
||||
if (!can_pause)
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user