Skip to content

Commit

Permalink
Android: Temporarily disable host thread check
Browse files Browse the repository at this point in the history
Very broken. Will investigate, but let's revert it for the time being.
  • Loading branch information
JosJuice committed Jun 6, 2023
1 parent 2d56daf commit 361171f
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion Source/Core/Core/Core.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 361171f

Please sign in to comment.