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