ips_layer: Eliminate a redundant copy in Parse()

Prevents unnecessary copying of the line being parsed.
This commit is contained in:
Lioncash 2020-09-22 16:38:43 -04:00
parent 53829d4cbd
commit a881efbf26

View File

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