mirror of
https://github.com/RetroDECK/ES-DE.git
synced 2025-01-18 07:05:39 +00:00
(Android) Fixed an issue where switching from ES-DE to another app and back again while the 'no ROMs' dialog was shown crashed the application
This commit is contained in:
parent
c2ae6468fe
commit
c33ee569f4
|
@ -86,7 +86,11 @@ public:
|
|||
void pauseViewVideos() override { mCurrentView->pauseViewVideos(); }
|
||||
void muteViewVideos() override { mCurrentView->muteViewVideos(); }
|
||||
// Needed on Android to reset the static image delay timer on activity resume.
|
||||
void resetViewVideosTimer() override { mCurrentView->resetViewVideosTimer(); }
|
||||
void resetViewVideosTimer() override
|
||||
{
|
||||
if (mCurrentView != nullptr)
|
||||
mCurrentView->resetViewVideosTimer();
|
||||
}
|
||||
|
||||
void onFileChanged(FileData* file, bool reloadGamelist);
|
||||
void triggerGameLaunch(FileData* game)
|
||||
|
|
Loading…
Reference in a new issue