Android: Temporarily disable host thread check

Very broken. Will investigate, but let's revert it for the time being.
This commit is contained in:
JosJuice 2023-06-06 18:39:32 +02:00
parent 2d56daf1bb
commit 361171fce0
1 changed files with 4 additions and 1 deletions

View File

@ -792,8 +792,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;