mirror of
https://github.com/hrydgard/ppsspp.git
synced 2024-11-23 13:30:02 +00:00
Detect CwCheat file UTF-8 BOM sequence and ignore it
This commit is contained in:
parent
565dd80587
commit
0fcf68632d
@ -98,6 +98,9 @@ bool CheatFileParser::Parse() {
|
||||
if (!tempLine)
|
||||
continue;
|
||||
|
||||
// Detect UTF-8 BOM sequence, and ignore it.
|
||||
if (line_ == 1 && memcmp(tempLine, "\xEF\xBB\xBF", 3) == 0)
|
||||
tempLine += 3;
|
||||
std::string line = TrimString(tempLine);
|
||||
|
||||
// Minimum length 5 is shortest possible _ lines name of the game "_G N+"
|
||||
|
Loading…
Reference in New Issue
Block a user