summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author Ryan Holtz <rholtz@batcountryentertainment.com>2010-04-03 21:06:43 +0000
committer Ryan Holtz <rholtz@batcountryentertainment.com>2010-04-03 21:06:43 +0000
commit041cb47232ad694d2ca3a9c6ff9fdb3b8dccf9f8 (patch)
tree32d6242758f7f91159b048ed86b4918afc5018ca
parentceccc811e5a9987de1b9bb0d922371c480c546cc (diff)
Re-fixing some cppcheck issues. No whatsnew.
-rw-r--r--src/mame/video/n64.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/mame/video/n64.c b/src/mame/video/n64.c
index 068004fd9e6..4504b9bf01a 100644
--- a/src/mame/video/n64.c
+++ b/src/mame/video/n64.c
@@ -745,16 +745,12 @@ bool Processor::ZCompare(void* fb, UINT8* hb, UINT16* zb, UINT8* zhb, UINT32 sz,
{
case 0: // Opaque
return (max || (overflow ? infront : nearer));
- break;
case 1: // Interpenetrating
return (max || (overflow ? infront : nearer));
- break;
case 2: // Transparent
return (infront || max);
- break;
case 3: // Decal
return (farther && nearer && !max);
- break;
default:
fatalerror( "z_mode = %d", m_other_modes.z_mode);
break;