mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-04 07:09:03 +00:00
Boot: Fix shadowing warning
This commit is contained in:
parent
39c5d55f03
commit
8d71f542cb
1 changed files with 2 additions and 2 deletions
|
@ -502,8 +502,8 @@ bool CBoot::BootUp(Core::System& system, std::unique_ptr<BootParameters> boot)
|
||||||
|
|
||||||
struct BootTitle
|
struct BootTitle
|
||||||
{
|
{
|
||||||
BootTitle(Core::System& system, const std::vector<DiscIO::Riivolution::Patch>& patches)
|
BootTitle(Core::System& system_, const std::vector<DiscIO::Riivolution::Patch>& patches)
|
||||||
: system(system), config(SConfig::GetInstance()), riivolution_patches(patches)
|
: system(system_), config(SConfig::GetInstance()), riivolution_patches(patches)
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
bool operator()(BootParameters::Disc& disc) const
|
bool operator()(BootParameters::Disc& disc) const
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue