line break consistency fix: ucode00.h

This commit is contained in:
unknown 2015-03-11 17:16:40 -04:00
parent 56dfb581ed
commit 63c4ad0182
1 changed files with 2 additions and 2 deletions

View File

@ -879,7 +879,7 @@ static void uc0_setothermode_h()
if (mask & 0x00300000) // cycle type
{
rdp.cycle_mode = (wxUint8)((rdp.othermode_h & 0x00300000) >> 20);
rdp.cycle_mode = (wxUint8)((rdp.othermode_h & 0x00300000) >> 20);
rdp.update |= UPDATE_ZBUF_ENABLED;
FRDP ("cycletype: %d\n", rdp.cycle_mode);
}
@ -942,7 +942,7 @@ static void uc0_setothermode_l()
{
rdp.zsrc = (rdp.othermode_l & 0x00000004) >> 2;
FRDP ("z-src sel: %s\n", str_zs[rdp.zsrc]);
FRDP ("z-src sel: %08lx\n", rdp.zsrc);
FRDP ("z-src sel: %08lx\n", rdp.zsrc);
rdp.update |= UPDATE_ZBUF_ENABLED;
}