mirror of https://github.com/PCSX2/pcsx2.git
'static' and 'extern' do not mix.
git-svn-id: http://pcsx2.googlecode.com/svn/trunk@3625 96395faa-99c1-11dd-bbfe-3dabce05a288
This commit is contained in:
parent
8375b0a989
commit
c425ece009
|
@ -227,7 +227,7 @@ static __fi void mVUoptimizePipeState(mV) {
|
|||
mVUregs.r = 0; // There are no stalls on the R-reg, so its Safe to discard info
|
||||
}
|
||||
|
||||
static __fi void mVUincCycles(mV, int x) {
|
||||
__fi void mVUincCycles(mV, int x) {
|
||||
mVUcycles += x;
|
||||
for (int z = 31; z > 0; z--) {
|
||||
calcCycles(mVUregs.VF[z].x, x);
|
||||
|
@ -300,7 +300,7 @@ void mVUsetCycles(mV) {
|
|||
}
|
||||
|
||||
// vu0 is allowed to exit early, so are dev builds (for inf loops)
|
||||
static __fi bool doEarlyExit(microVU* mVU) {
|
||||
__fi bool doEarlyExit(microVU* mVU) {
|
||||
return IsDevBuild || !isVU1;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue