mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2025-10-12 13:37:47 +00:00
yuzu: Eliminate variable shadowing
This commit is contained in:
parent
56114589a6
commit
911eae6283
10 changed files with 25 additions and 25 deletions
|
@ -89,8 +89,8 @@ void ConfigurePerGameAddons::ApplyConfiguration() {
|
|||
Settings::values.disabled_addons[title_id] = disabled_addons;
|
||||
}
|
||||
|
||||
void ConfigurePerGameAddons::LoadFromFile(FileSys::VirtualFile file) {
|
||||
this->file = std::move(file);
|
||||
void ConfigurePerGameAddons::LoadFromFile(FileSys::VirtualFile file_) {
|
||||
file = std::move(file_);
|
||||
LoadConfiguration();
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue