diff --git a/Source/Core/VideoCommon/Src/BPMemory.h b/Source/Core/VideoCommon/Src/BPMemory.h index 5254ba7bd7..90fffc6c6c 100644 --- a/Source/Core/VideoCommon/Src/BPMemory.h +++ b/Source/Core/VideoCommon/Src/BPMemory.h @@ -567,7 +567,7 @@ union GenMode { u32 numtexgens : 4; // 0xF u32 numcolchans : 5; // 0x1E0 - u32 ms_en : 1; // 0x200 + u32 multisampling : 1; // 0x200 u32 numtevstages : 4; // 0x3C00 u32 cullmode : 2; // 0xC000 u32 numindstages : 3; // 0x30000 diff --git a/Source/Core/VideoCommon/Src/BPStructs.cpp b/Source/Core/VideoCommon/Src/BPStructs.cpp index 31f873acc6..ce0346b523 100644 --- a/Source/Core/VideoCommon/Src/BPStructs.cpp +++ b/Source/Core/VideoCommon/Src/BPStructs.cpp @@ -149,9 +149,9 @@ void BPWritten(const BPCmd& bp) { case BPMEM_GENMODE: // Set the Generation Mode { - PRIM_LOG("genmode: texgen=%d, col=%d, ms_en=%d, tev=%d, cullmode=%d, ind=%d, zfeeze=%d", + PRIM_LOG("genmode: texgen=%d, col=%d, multisampling=%d, tev=%d, cullmode=%d, ind=%d, zfeeze=%d", bpmem.genMode.numtexgens, bpmem.genMode.numcolchans, - bpmem.genMode.ms_en, bpmem.genMode.numtevstages+1, bpmem.genMode.cullmode, + bpmem.genMode.multisampling, bpmem.genMode.numtevstages+1, bpmem.genMode.cullmode, bpmem.genMode.numindstages, bpmem.genMode.zfreeze); SetGenerationMode(); break;