From 5440abd7033d2dde8883ba13114fe14754d421e0 Mon Sep 17 00:00:00 2001 From: angelosa Date: Wed, 28 Jun 2017 19:28:30 +0200 Subject: [PATCH] Typo fix (nw) Reminder: second parameter is depth color divided by number of available colors for that bank i.e. 8bpp / 256 = 1 --- src/mame/video/ygv608.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/mame/video/ygv608.cpp b/src/mame/video/ygv608.cpp index c3a55351c2c..af4e0cdeea6 100644 --- a/src/mame/video/ygv608.cpp +++ b/src/mame/video/ygv608.cpp @@ -356,8 +356,8 @@ static GFXDECODE_START( ygv608 ) GFXDECODE_DEVICE( DEVICE_SELF, 0x00000000, pts_16x16_4bits_layout, 0, 16 ) GFXDECODE_DEVICE( DEVICE_SELF, 0x00000000, pts_32x32_4bits_layout, 0, 16 ) GFXDECODE_DEVICE( DEVICE_SELF, 0x00000000, pts_64x64_4bits_layout, 0, 16 ) - GFXDECODE_DEVICE( DEVICE_SELF, 0x00000000, pts_8x8_8bits_layout, 0, 256 ) - GFXDECODE_DEVICE( DEVICE_SELF, 0x00000000, pts_16x16_8bits_layout, 0, 256 ) + GFXDECODE_DEVICE( DEVICE_SELF, 0x00000000, pts_8x8_8bits_layout, 0, 1 ) + GFXDECODE_DEVICE( DEVICE_SELF, 0x00000000, pts_16x16_8bits_layout, 0, 1 ) GFXDECODE_END