mirror of https://github.com/PCSX2/pcsx2.git
More throwing things.
git-svn-id: http://pcsx2.googlecode.com/svn/trunk@2325 96395faa-99c1-11dd-bbfe-3dabce05a288
This commit is contained in:
parent
00f14b5760
commit
ee6c721b51
|
@ -516,6 +516,7 @@
|
|||
<Unit filename="../x86/microVU_Alloc.inl" />
|
||||
<Unit filename="../x86/microVU_Analyze.inl" />
|
||||
<Unit filename="../x86/microVU_Branch.inl" />
|
||||
<Unit filename="../x86/microVU_Clamp.inl" />
|
||||
<Unit filename="../x86/microVU_Compile.inl" />
|
||||
<Unit filename="../x86/microVU_Execute.inl" />
|
||||
<Unit filename="../x86/microVU_Flags.inl" />
|
||||
|
|
|
@ -162,7 +162,7 @@ public:
|
|||
void Reset();
|
||||
void ExecuteBlock();
|
||||
void Clear(u32 addr, u32 size);
|
||||
void Vsync();
|
||||
void Vsync() throw();
|
||||
};
|
||||
|
||||
class recMicroVU1 : public BaseVUmicroCPU
|
||||
|
@ -178,7 +178,7 @@ public:
|
|||
void Reset();
|
||||
void ExecuteBlock();
|
||||
void Clear(u32 addr, u32 size);
|
||||
void Vsync();
|
||||
void Vsync() throw();
|
||||
};
|
||||
|
||||
extern BaseVUmicroCPU* CpuVU0;
|
||||
|
|
|
@ -360,7 +360,7 @@ void recMicroVU0::Clear(u32 addr, u32 size) {
|
|||
mVUclear(µVU0, addr, size);
|
||||
}
|
||||
|
||||
void recMicroVU0::Vsync() {
|
||||
void recMicroVU0::Vsync() throw() {
|
||||
mVUvsyncUpdate(µVU0);
|
||||
}
|
||||
|
||||
|
@ -408,6 +408,6 @@ void recMicroVU1::Clear(u32 addr, u32 size)
|
|||
mVUclear(µVU1, addr, size);
|
||||
}
|
||||
|
||||
void recMicroVU1::Vsync() {
|
||||
void recMicroVU1::Vsync() throw() {
|
||||
mVUvsyncUpdate(µVU1);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue