ips_layer: Eliminate a redundant copy in Parse()

Prevents unnecessary copying of the line being parsed.
merge-requests/60/head
Lioncash 2020-09-22 16:38:43 +07:00
parent 53829d4cbd
commit a881efbf26
1 changed files with 4 additions and 2 deletions

@ -245,9 +245,11 @@ void IPSwitchCompiler::Parse() {
// Read rest of patch
while (true) {
if (i + 1 >= lines.size())
if (i + 1 >= lines.size()) {
break;
const auto patch_line = lines[++i];
}
const auto& patch_line = lines[++i];
// Start of new patch
if (StartsWith(patch_line, "@enabled") || StartsWith(patch_line, "@disabled")) {