From d01a9c69182dd8e198354163b2effad222e7768a Mon Sep 17 00:00:00 2001 From: arcum42 Date: Sat, 6 Dec 2008 21:08:51 +0000 Subject: [PATCH] Temporarily block out two functions that are not being used that cause the debug version not to compile. git-svn-id: http://pcsx2-playground.googlecode.com/svn/trunk@395 a6443dda-0b58-4228-96e9-037be469359c --- pcsx2/Misc.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pcsx2/Misc.h b/pcsx2/Misc.h index d5e14f3214..300c9de96f 100644 --- a/pcsx2/Misc.h +++ b/pcsx2/Misc.h @@ -357,6 +357,7 @@ static __forceinline long InterlockedDecrement( long* Addend ) return InterlockedExchangeAdd( Addend, -1 ); } +#if 0 // These don't work, but are also never called.l static __forceinline long InterlockedCompareExchange(volatile long *dest, long exch, long comp) { long old; @@ -388,7 +389,7 @@ static __forceinline long InterlockedCompareExchangePointer(PVOID volatile *dest return(old); } - +#endif #endif extern void InitCPUTicks();