mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-03-12 22:56:52 +01:00
Merge pull request #11895 from JosJuice/android-no-host-check
Android: Temporarily disable host thread check
This commit is contained in:
commit
afc97ec20f
@ -796,8 +796,11 @@ void SaveScreenShot(std::string_view name)
|
||||
|
||||
static bool PauseAndLock(Core::System& system, bool do_lock, bool unpause_on_unlock)
|
||||
{
|
||||
// WARNING: PauseAndLock is not fully threadsafe so is only valid on the Host Thread
|
||||
// WARNING: PauseAndLock is not fully threadsafe so is only valid on the Host Thread
|
||||
// TODO: Fix Android
|
||||
#ifndef ANDROID
|
||||
ASSERT(IsHostThread());
|
||||
#endif
|
||||
|
||||
if (!IsRunningAndStarted())
|
||||
return true;
|
||||
|
Loading…
x
Reference in New Issue
Block a user