Core: Remove Unused IsRunningInCurrentThread Function

This commit is contained in:
mitaclaw
2024-03-18 07:18:41 -07:00
parent 85dee300b5
commit 11b628f250
2 changed files with 2 additions and 8 deletions

View File

@ -210,11 +210,6 @@ bool IsRunningAndStarted()
return s_is_started && !s_is_stopping;
}
bool IsRunningInCurrentThread()
{
return IsRunning() && IsCPUThread();
}
bool IsCPUThread()
{
return tls_is_cpu_thread;