Revert "TerminalFont (Linux): improve detection for xterm"

Committed by accident

This reverts commit 64c53e2cdc.
This commit is contained in:
李通洲
2024-07-15 16:19:39 +08:00
parent 9268d8449e
commit 89ce598800
+1 -1
View File
@@ -59,7 +59,7 @@ bool ffParsePropLinePointer(const char** line, const char* start, FFstrbuf* buff
}
//Copy the value to the buffer
while(tolower(**line) != tolower(valueEnd) && **line != '\n' && **line != '\0')
while(**line != valueEnd && **line != '\n' && **line != '\0')
{
ffStrbufAppendC(buffer, **line);
++(*line);