Fix C64 ascii to petscii output in conio
This commit is contained in:
parent
538d965636
commit
33f4b25f28
|
@ -224,11 +224,10 @@ void putpch(char c)
|
|||
c ^= 0xa0;
|
||||
c ^= 0x20;
|
||||
#else
|
||||
if (c >= 97)
|
||||
c ^= 0x20;
|
||||
c ^= 0x20;
|
||||
#endif
|
||||
|
||||
if (giocharmap == IOCHM_PETSCII_2)
|
||||
if (giocharmap == IOCHM_PETSCII_1)
|
||||
c &= 0xdf;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue