diff options
| author | 2009-11-26 00:48:24 +0000 | |
|---|---|---|
| committer | 2009-11-26 00:48:24 +0000 | |
| commit | 58e1ff522ae30fa0aa73045ad70e0f601d669ad0 (patch) | |
| tree | cdc3be954e1aadec0bd1fb76bc22b0274cf63f71 /src | |
| parent | 81b88a907ccc810b495d50897ab9c3fc4288a766 (diff) | |
Removed an useless debug thing ;)
Diffstat (limited to 'src')
| -rw-r--r-- | src/mame/video/hng64.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/mame/video/hng64.c b/src/mame/video/hng64.c index 4842ad4cef0..5e005dfca0f 100644 --- a/src/mame/video/hng64.c +++ b/src/mame/video/hng64.c @@ -123,7 +123,7 @@ static struct polygon *polys ; * 1 | YYYY YYYY YYYY YYYY XXXX XXXX XXXX XXXX | x/y zoom (*) * 2 | ---- -zzz zzzz zzzz ---- ---I cccc CCCC | Z-buffer value, 'Inline' chain flag, x/y chain * 3 | ---- ---- pppp pppp ---- ---- ---- ---- | palette entry - * 4 | mmmm -?fF a??? tttt tttt tttt tttt tttt | mosaic, unknown (**) , flip bits, additive blending, unknown (***), tile number + * 4 | mmmm -?fF a??? tttt tttt tttt tttt tttt | mosaic factor, unknown (**) , flip bits, additive blending, unknown (***), tile number * 5 | ---- ---- ---- ---- ---- ---- ---- ---- | not used ?? * 6 | ---- ---- ---- ---- ---- ---- ---- ---- | not used ?? * 7 | ---- ---- ---- ---- ---- ---- ---- ---- | not used ?? @@ -206,9 +206,6 @@ static void draw_sprites(running_machine *machine, bitmap_t *bitmap, const recta xflip=(source[4]&0x02000000)>>25; yflip=(source[4]&0x01000000)>>24; - if(source[4]&0xf0000000) - printf("%08x\n",source[4]); - // if (!(source[4] == 0x00000000 || source[4] == 0x000000aa)) // mame_printf_debug("unknown : %.8x %.8x %.8x %.8x %.8x %.8x %.8x %.8x \n", source[0], source[1], source[2], source[3], // source[4], source[5], source[6], source[7]) ; |
