summaryrefslogtreecommitdiff
path: root/Source/Core/Common
diff options
context:
space:
mode:
authorNolan Check <Nolan.Check@gmail.com>2009-07-19 08:24:30 +0000
committerNolan Check <Nolan.Check@gmail.com>2009-07-19 08:24:30 +0000
commit6f28539ccc78b8107bf4f16fe16ef1dbe56728b0 (patch)
treef097400df19c597909ca2ab35f18532ab211e6ac /Source/Core/Common
parentfd70f99f04c571c0334c4ddc9fef03b27bf25961 (diff)
Rename scale_something to scale_invert. Plus, sneak in a tiny Thread.h change.
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@3845 8ced0084-cf51-0410-be5f-012b33b47a6e
Diffstat (limited to 'Source/Core/Common')
-rw-r--r--Source/Core/Common/Src/Thread.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/Common/Src/Thread.h b/Source/Core/Common/Src/Thread.h
index f6fc7cc7ee..8cd29726e0 100644
--- a/Source/Core/Common/Src/Thread.h
+++ b/Source/Core/Common/Src/Thread.h
@@ -182,7 +182,7 @@ void SleepCurrentThread(int ms);
inline void YieldCPU()
{
#ifdef _WIN32
- YieldProcessor();
+ SwitchToThread();
#elif defined _POSIX_THREADS
sched_yield();
#endif