mirror of
https://github.com/deater/dos33fsprogs.git
synced 2025-02-05 21:34:30 +00:00
gr-sim: only auto-uppercase inverse letters
This commit is contained in:
parent
c20522f44c
commit
150f5ed52c
@ -1803,7 +1803,7 @@ void print_inverse(char *string) {
|
||||
for(y=0;y<strlen(string);y++) {
|
||||
a=string[y];
|
||||
a=(a&0x3f);
|
||||
a&=~0x20; // convert to uppercase
|
||||
if ((a>=('a'&0x3f)) && (a<=('z'&0x3f))) a&=~0x20; // convert to uppercase
|
||||
ram[y_indirect(BASL,y)]=a;
|
||||
}
|
||||
ram[BASL]+=strlen(string);
|
||||
|
Loading…
x
Reference in New Issue
Block a user