diff --git a/pcsx2/x86/microVU.cpp b/pcsx2/x86/microVU.cpp index a1406ed9ca..765cfa94d5 100644 --- a/pcsx2/x86/microVU.cpp +++ b/pcsx2/x86/microVU.cpp @@ -57,7 +57,7 @@ __forceinline void mVUreset(microVU* mVU) { mVUclose(mVU); // Close // Dynarec Cache - mVU->cache = SysMmapEx(mVU->cacheAddr, mVU->cacheSize, 0x10000000, "Mega VU"); + mVU->cache = SysMmapEx(mVU->cacheAddr, mVU->cacheSize, 0x10000000, "Micro VU"); if ( mVU->cache == NULL ) throw Exception::OutOfMemory(fmt_string( "microVU Error: failed to allocate recompiler memory! (addr: 0x%x)", params (u32)mVU->cache)); // Other Variables @@ -278,4 +278,4 @@ __forceinline void runVUrec(u32 startPC, u32 cycles, int vuIndex) { else runVU1(µVU1, startPC, cycles); } -#endif // PCSX2_MEGAVU +#endif // PCSX2_MICROVU diff --git a/pcsx2/x86/microVU_Tables.cpp b/pcsx2/x86/microVU_Tables.cpp index fb3759bbe3..46543b5983 100644 --- a/pcsx2/x86/microVU_Tables.cpp +++ b/pcsx2/x86/microVU_Tables.cpp @@ -220,7 +220,7 @@ void mVULowerOP_T3_11(VURegs* VU, s32 info) { mVULowerOP_T3_11_OPCODE[ ( VU->code >> 6 ) & 0x1f ]( VU, info ); } void mVUunknown(VURegs* VU, s32 info) { - SysPrintf("Unknown Mega VU opcode called\n"); + SysPrintf("Unknown Micro VU opcode called\n"); } #endif diff --git a/pcsx2/x86/microVU_Tables.h b/pcsx2/x86/microVU_Tables.h index deee5d5ed6..e9b8f26500 100644 --- a/pcsx2/x86/microVU_Tables.h +++ b/pcsx2/x86/microVU_Tables.h @@ -19,7 +19,7 @@ #pragma once //------------------------------------------------------------------ -// Mega VU Micromode Upper instructions +// Micro VU Micromode Upper instructions //------------------------------------------------------------------ void mVU_ABS(VURegs *vuRegs, int info); @@ -119,7 +119,7 @@ void mVU_ITOF15(VURegs *vuRegs, int info); void mVU_CLIP(VURegs *vuRegs, int info); //------------------------------------------------------------------ -// Mega VU Micromode Lower instructions +// Micro VU Micromode Lower instructions //------------------------------------------------------------------ void mVU_DIV(VURegs *vuRegs, int info);