From bb9c7b593da0ed7b0dfefacf1623627a0e3cf795 Mon Sep 17 00:00:00 2001 From: Nicola Salmoria Date: Thu, 3 Apr 2008 14:28:26 +0000 Subject: [PATCH] 00404: 3wonders: a glitch when u insert your record name when game is over. --- src/mame/video/cps1.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/mame/video/cps1.c b/src/mame/video/cps1.c index 73edc04bb07..f70e377dc51 100644 --- a/src/mame/video/cps1.c +++ b/src/mame/video/cps1.c @@ -1036,10 +1036,11 @@ static TILE_GET_INFO( get_tile0_info ) if (cps1_game_config->kludge == 2) // 3wonders { if (code == 0x0000 || // bottom of screen, between lives of first player and the word INSERT COIN + code == 0x2020 || // glitch after entering high score code == 0x0a5c || // SIVA LOU'S COMPANION in attract mode - code == 0x0a5d || // (note that this is definitely a game bug, 0a5c is supposed to be - code == 0x0a6c || // the position on screen where to draw the string, but it is interpreted - code == 0x0a6d) // as a character code) + code == 0x0a5d || // (0a5c is supposed to be the position on screen where to draw the string, + code == 0x0a6c || // but due to a game bug it is interpreted as a character code. This has no + code == 0x0a6d) // effect on real hardware since out-of-bounds chars are ignored) { tileinfo->pen_data = empty_tile; }