1
0
mirror of https://github.com/pevans/erc-c.git synced 2024-06-10 14:29:30 +00:00

We mixed up when to turn on/off text mode

This commit is contained in:
Peter Evans 2018-04-16 22:15:17 -05:00
parent c82c1828b0
commit 573a276948

View File

@ -261,12 +261,12 @@ SEGMENT_WRITER(apple2_dbuf_switch_write)
case 0xC050:
apple2_set_display(mach,
mach->display_mode | DISPLAY_TEXT);
mach->display_mode & ~DISPLAY_TEXT);
break;
case 0xC051:
apple2_set_display(mach,
mach->display_mode & ~DISPLAY_TEXT);
mach->display_mode | DISPLAY_TEXT);
break;
case 0xC052: