Fix compiler warning.

git-svn-id: http://pcsx2.googlecode.com/svn/trunk@980 96395faa-99c1-11dd-bbfe-3dabce05a288
This commit is contained in:
arcum42 2009-04-15 05:12:03 +00:00
parent a661c80a4a
commit 5e87ea3127
1 changed files with 3 additions and 3 deletions

View File

@ -1207,7 +1207,7 @@ int _VIF0chain()
return ret; return ret;
} }
bool _chainVIF0() int _chainVIF0()
{ {
int id, ret; int id, ret;
@ -1252,9 +1252,9 @@ bool _chainVIF0()
VIF_LOG("dmaIrq Set\n"); VIF_LOG("dmaIrq Set\n");
vif0.done = true; vif0.done = true;
return vif0.done; //End Transfer return (vif0.done)?1:0; //End Transfer
} }
return vif0.done; //Return Done return (vif0.done)?1:0; //Return Done
} }
void vif0Interrupt() void vif0Interrupt()