BPMemory: Assign a more descriptive name to a field in the genmode register.

This commit is contained in:
NeoBrainX
2013-06-18 14:49:22 +02:00
parent 6143594db6
commit c4eb659fec
2 changed files with 3 additions and 3 deletions

View File

@ -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;