Resolve variable shadowing in rest of core

This commit is contained in:
Chloe Marcec
2020-12-06 00:24:56 +11:00
parent 8b8bef57e5
commit b66a125823
14 changed files with 77 additions and 74 deletions

View File

@@ -222,8 +222,8 @@ void CheatEngine::SetMainMemoryParameters(VAddr main_region_begin, u64 main_regi
};
}
void CheatEngine::Reload(std::vector<CheatEntry> cheats) {
this->cheats = std::move(cheats);
void CheatEngine::Reload(std::vector<CheatEntry> cheats_) {
cheats = std::move(cheats_);
is_pending_reload.exchange(true);
}