Skip to content

Commit

Permalink
Revert "Android: Temporarily disable host thread check"
Browse files Browse the repository at this point in the history
This reverts commit 361171f.
  • Loading branch information
JosJuice committed Jun 12, 2023
1 parent 6d60acb commit 58158d5
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions Source/Core/Core/Core.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -795,11 +795,8 @@ 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
// TODO: Fix Android
#ifndef ANDROID
// WARNING: PauseAndLock is not fully threadsafe so is only valid on the Host Thread
ASSERT(IsHostThread());
#endif

if (!IsRunningAndStarted())
return true;
Expand Down

0 comments on commit 58158d5

Please sign in to comment.