mirror of
https://github.com/holub/mame
synced 2025-06-30 07:58:56 +03:00
pc_vga: fixed start address in text mode (no whatsnew)
This commit is contained in:
parent
960b0edc75
commit
7e6dddf66c
@ -230,7 +230,7 @@ static void vga_vh_text(running_machine &machine, bitmap_rgb32 &bitmap, const re
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
for (addr = TEXT_START_ADDRESS, line = -CRTC_SKEW; line < TEXT_LINES;
|
for (addr = vga.crtc.start_addr, line = -CRTC_SKEW; line < TEXT_LINES;
|
||||||
line += height, addr += TEXT_LINE_LENGTH)
|
line += height, addr += TEXT_LINE_LENGTH)
|
||||||
{
|
{
|
||||||
for (pos = addr, column=0; column<TEXT_COLUMNS; column++, pos++)
|
for (pos = addr, column=0; column<TEXT_COLUMNS; column++, pos++)
|
||||||
|
Loading…
Reference in New Issue
Block a user