summaryrefslogtreecommitdiff
path: root/Source/Core
diff options
context:
space:
mode:
authorJosJuice <josjuice@gmail.com>2023-06-06 19:07:49 +0200
committerJosJuice <josjuice@gmail.com>2023-06-12 23:39:42 +0200
commitf11175d117bd47edac8df56a96fea5b68fc3ef7e (patch)
tree33a9e06dc3497d6c49a8fc19aacd5cf85273b5d6 /Source/Core
parent03f2f57edf7ac7340b25c4d603b721ab6910359c (diff)
Revert "Android: Temporarily disable host thread check"
This reverts commit 361171fce087cad73d94f0d9fd81a66069f9af4f.
Diffstat (limited to 'Source/Core')
-rw-r--r--Source/Core/Core/Core.cpp5
1 files changed, 1 insertions, 4 deletions
diff --git a/Source/Core/Core/Core.cpp b/Source/Core/Core/Core.cpp
index dbcca8a687..19bd249952 100644
--- a/Source/Core/Core/Core.cpp
+++ b/Source/Core/Core/Core.cpp
@@ -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;