mirror of
https://github.com/libretro/ppsspp.git
synced 2025-01-22 00:35:04 +00:00
Fixed missing ")"
This commit is contained in:
parent
5efc4474b0
commit
6a894463b7
@ -234,7 +234,7 @@ std::vector<std::string> CWCheatEngine::GetCodesList() { //Reads the entire chea
|
||||
}
|
||||
for (int i = 0; !list.eof(); i ++) {
|
||||
getline(list, line, '\n');
|
||||
if (line.length() > 3 && (line.substr(0,1) == "_"||line.substr(0,2) == "//"){
|
||||
if (line.length() > 3 && (line.substr(0,1) == "_"||line.substr(0,2) == "//")){
|
||||
codesList.push_back(line);
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user