From bb388def9ec56b33fa1126e3bae9994d6cf0980b Mon Sep 17 00:00:00 2001 From: Fabio Priuli Date: Thu, 17 Dec 2009 06:32:20 +0000 Subject: [PATCH] Fixed 32bit compile (un-commented a line in konicdev.c) I had missed this because I tested a debug+symbols build and it ignores warnings. my bad --- src/mame/video/konicdev.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mame/video/konicdev.c b/src/mame/video/konicdev.c index 593756f7efe..ae77132f168 100644 --- a/src/mame/video/konicdev.c +++ b/src/mame/video/konicdev.c @@ -5501,7 +5501,7 @@ void k053936_zoom_draw( const device_config *device, bitmap_t *bitmap, const rec UINT16 *lineaddr = 4 * ((y - k053936->offset[1]) & 0x1ff) + (k053936->linectrl) ? k053936->linectrl : 0; my_clip.min_y = my_clip.max_y = y; -// startx = 256 * (INT16)(lineaddr[0] + k053936->ctrl[0x00]); + startx = 256 * (INT16)(lineaddr[0] + k053936->ctrl[0x00]); starty = 256 * (INT16)(lineaddr[1] + k053936->ctrl[0x01]); incxx = (INT16)(lineaddr[2]); incxy = (INT16)(lineaddr[3]);