mirror of
https://github.com/yuzu-mirror/yuzu.git
synced 2024-11-04 01:09:58 +00:00
ips_layer: Eliminate a redundant copy in Parse()
Prevents unnecessary copying of the line being parsed.
This commit is contained in:
parent
53829d4cbd
commit
a881efbf26
1 changed files with 4 additions and 2 deletions
|
@ -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")) {
|
||||||
|
|
Loading…
Reference in a new issue