diff options
| author | Nolan Check <Nolan.Check@gmail.com> | 2009-07-19 08:24:30 +0000 |
|---|---|---|
| committer | Nolan Check <Nolan.Check@gmail.com> | 2009-07-19 08:24:30 +0000 |
| commit | 6f28539ccc78b8107bf4f16fe16ef1dbe56728b0 (patch) | |
| tree | f097400df19c597909ca2ab35f18532ab211e6ac /Source/Core/Common | |
| parent | fd70f99f04c571c0334c4ddc9fef03b27bf25961 (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.h | 2 |
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 |
