Fix up last commit for Linux.

git-svn-id: http://pcsx2.googlecode.com/svn/trunk@2604 96395faa-99c1-11dd-bbfe-3dabce05a288
This commit is contained in:
arcum42 2010-02-18 10:07:15 +00:00
parent d379a1b010
commit e17bf47470
4 changed files with 6 additions and 4 deletions

View File

@ -172,6 +172,7 @@ set(pcsx2Sources
Vif1_Dma.cpp
Vif1_MFIFO.cpp
Vif.cpp
Vif_Codes.cpp
Vif_Commands.cpp
Vif_Unpack.cpp
Vif_Unpack.inl

View File

@ -333,6 +333,7 @@
<Unit filename="../Vif0_Dma.cpp" />
<Unit filename="../Vif1_Dma.cpp" />
<Unit filename="../Vif1_MFIFO.cpp" />
<Unit filename="../Vif_Codes.cpp" />
<Unit filename="../Vif_Commands.cpp" />
<Unit filename="../Vif_Dma.h" />
<Unit filename="../Vif_Unpack.cpp" />

View File

@ -32,12 +32,12 @@ vifOp(vifCode_Null);
// Vif0/Vif1 Misc Functions
//------------------------------------------------------------------
_f void vifFlush(int idx) {
static _f void vifFlush(int idx) {
if (!idx) vif0FLUSH();
else vif1FLUSH();
}
_f void vuExecMicro(int idx, u32 addr) {
static _f void vuExecMicro(int idx, u32 addr) {
VURegs* VU = nVif[idx].VU;
vifFlush(idx);

View File

@ -30,12 +30,12 @@ _vifT void vifCMD_Null();
// Vif0/Vif1 Misc Functions
//------------------------------------------------------------------
_f void vifFlush(int idx) {
static _f void vifFlush(int idx) {
if (!idx) vif0FLUSH();
else vif1FLUSH();
}
_f void vuExecMicro(int idx, u32 addr) {
static _f void vuExecMicro(int idx, u32 addr) {
VURegs* VU = nVif[idx].VU;
vifFlush(idx);