mirror of
https://github.com/holub/mame
synced 2025-07-04 01:18:59 +03:00
alphatpx: fix cursor (nw)
This commit is contained in:
parent
57a379c15a
commit
ffbc31a9a2
@ -429,7 +429,7 @@ uint32_t alphatpx_state::screen_update(screen_device &screen, bitmap_rgb32 &bitm
|
|||||||
{
|
{
|
||||||
uint8_t code = m_vram[(vramy * 128) + x]; // helwie44 must be 128d is 080h physical display-ram step line
|
uint8_t code = m_vram[(vramy * 128) + x]; // helwie44 must be 128d is 080h physical display-ram step line
|
||||||
// draw 12 lines of the character
|
// draw 12 lines of the character
|
||||||
bool cursoren = cursor.contains(x * 8, y * 12);
|
bool cursoren = cursor.contains(x * 8, vramy * 12);
|
||||||
for (int line = 0; line < 12; line++)
|
for (int line = 0; line < 12; line++)
|
||||||
{
|
{
|
||||||
uint8_t data = m_gfx[((code & 0x7f) * 16) + line];
|
uint8_t data = m_gfx[((code & 0x7f) * 16) + line];
|
||||||
|
Loading…
Reference in New Issue
Block a user