summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame
diff options
context:
space:
mode:
author Angelo Salese <angelosa@users.noreply.github.com>2011-08-24 15:13:39 +0000
committer Angelo Salese <angelosa@users.noreply.github.com>2011-08-24 15:13:39 +0000
commit2eec9774526d0aacb2b9ea5ed2219efb691315ac (patch)
tree84dbaebe815047d28c5447ce3b966744c46f7b12 /src/mame
parent7e9d0900ac448446cef574e182256a0a9851f6c1 (diff)
Work-around for TMS32051 crash on Taito JC soft reset
Diffstat (limited to 'src/mame')
-rw-r--r--src/mame/video/taitojc.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/mame/video/taitojc.c b/src/mame/video/taitojc.c
index 2e83c035e41..08b4b1cb380 100644
--- a/src/mame/video/taitojc.c
+++ b/src/mame/video/taitojc.c
@@ -194,11 +194,9 @@ static void draw_object(running_machine &machine, bitmap_t *bitmap, const rectan
{
UINT16 *d = BITMAP_ADDR16(bitmap, j, 0);
- UINT8 pen = state->m_objlist[(address-0xff000)/4];
-
for (i=x1; i < x2; i++)
{
- d[i] = pen;
+ d[i] = 8; //TODO: black
//index++;
}