mirror of
https://github.com/deater/dos33fsprogs.git
synced 2025-08-16 14:27:25 +00:00
gr-sim: only auto-uppercase inverse letters
This commit is contained in:
@@ -1803,7 +1803,7 @@ void print_inverse(char *string) {
|
|||||||
for(y=0;y<strlen(string);y++) {
|
for(y=0;y<strlen(string);y++) {
|
||||||
a=string[y];
|
a=string[y];
|
||||||
a=(a&0x3f);
|
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[y_indirect(BASL,y)]=a;
|
||||||
}
|
}
|
||||||
ram[BASL]+=strlen(string);
|
ram[BASL]+=strlen(string);
|
||||||
|
Reference in New Issue
Block a user