From 78fc9af3887bc349383ecf9d5f2e4cd203d2cb0e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C3=ABl=20Banaan=20Ananas?= Date: Sat, 29 May 2010 21:34:11 +0000 Subject: [PATCH] ckong does have 1 pixel gap between floor an himself --- src/mame/video/cclimber.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/mame/video/cclimber.c b/src/mame/video/cclimber.c index 71a0e84afd4..44741a1c86a 100644 --- a/src/mame/video/cclimber.c +++ b/src/mame/video/cclimber.c @@ -517,10 +517,10 @@ static void cclimber_draw_bigsprite(bitmap_t *bitmap, const rectangle *cliprect) int bigsprite_flip_y = (cclimber_bigsprite_control[1] & 0x20) >> 5; if (bigsprite_flip_x) - x = 0x7f - x; + x = 0x80 - x; if (bigsprite_flip_y) - y = 0x7f - y; + y = 0x80 - y; tilemap_mark_all_tiles_dirty(bs_tilemap);