Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
BPMemory: Assign a more descriptive name to a field in the genmode re…
…gister.
  • Loading branch information
neobrain committed Jun 18, 2013
1 parent 6143594 commit c4eb659
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Source/Core/VideoCommon/Src/BPMemory.h
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions Source/Core/VideoCommon/Src/BPStructs.cpp
Expand Up @@ -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;
Expand Down

0 comments on commit c4eb659

Please sign in to comment.