Fixed a stupid math bug with charset decoding...
This commit is contained in:
parent
ab385355a8
commit
f98e1228b8
@ -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
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user