mirror of
https://github.com/AppleWin/AppleWin.git
synced 2024-12-28 02:32:08 +00:00
Update40ColCell: only convert 0xFF -> 0x20 for Apple][ (not //e)
This commit is contained in:
parent
bd2809355c
commit
08159a2374
@ -960,7 +960,7 @@ BOOL Update40ColCell (int x, int y, int xpixel, int ypixel, int offset)
|
|||||||
|
|
||||||
// Apple ][ inits memory to FF,FF,00,00
|
// Apple ][ inits memory to FF,FF,00,00
|
||||||
// The 7F char is same as (inverse) space
|
// The 7F char is same as (inverse) space
|
||||||
if (ch == 0xFF)
|
if ((! apple2e) && (ch == 0xFF))
|
||||||
ch = 32;
|
ch = 32;
|
||||||
|
|
||||||
CopySource(xpixel,ypixel,
|
CopySource(xpixel,ypixel,
|
||||||
|
Loading…
Reference in New Issue
Block a user