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
This commit is contained in:
arcum42 2008-12-06 21:08:51 +00:00 committed by Gregory Hainaut
parent 1753d21df4
commit d01a9c6918
1 changed files with 2 additions and 1 deletions

View File

@ -357,6 +357,7 @@ static __forceinline long InterlockedDecrement( long* Addend )
return InterlockedExchangeAdd( Addend, -1 ); 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) static __forceinline long InterlockedCompareExchange(volatile long *dest, long exch, long comp)
{ {
long old; long old;
@ -388,7 +389,7 @@ static __forceinline long InterlockedCompareExchangePointer(PVOID volatile *dest
return(old); return(old);
} }
#endif
#endif #endif
extern void InitCPUTicks(); extern void InitCPUTicks();