mirror of https://github.com/PCSX2/pcsx2.git
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:
parent
1753d21df4
commit
d01a9c6918
|
@ -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();
|
||||||
|
|
Loading…
Reference in New Issue