mirror of
https://github.com/tildearrow/furnace.git
synced 2024-11-04 20:05:05 +00:00
GUI: fix text/binary command stream outs being swa
This commit is contained in:
parent
827904d46e
commit
a0968aed07
1 changed files with 1 additions and 1 deletions
|
@ -3544,7 +3544,7 @@ bool FurnaceGUI::loop() {
|
||||||
if (i>='A' && i<='Z') i+='a'-'A';
|
if (i>='A' && i<='Z') i+='a'-'A';
|
||||||
}
|
}
|
||||||
bool isBinary=true;
|
bool isBinary=true;
|
||||||
if ((lowerCase.size()<4 || lowerCase.rfind(".txt")!=lowerCase.size()-4)) {
|
if ((lowerCase.size()<4 || lowerCase.rfind(".bin")!=lowerCase.size()-4)) {
|
||||||
isBinary=false;
|
isBinary=false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue