Fixed a stupid math bug with charset decoding...

This commit is contained in:
Angelo Salese 2009-12-06 23:19:07 +00:00
parent ab385355a8
commit f98e1228b8

View File

@ -272,7 +272,7 @@ static WRITE32_HANDLER( sysh1_char_w )
gfx[offset*4+2] = (h1_charram[offset] & 0x0000ff00) >> 8;
gfx[offset*4+3] = (h1_charram[offset] & 0x000000ff) >> 0;
gfx_element_mark_dirty(space->machine->gfx[2], offset/16);
gfx_element_mark_dirty(space->machine->gfx[2], offset/64); //*4/256
}
}