mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2024-11-15 05:47:56 -07:00
ConfigManager: Get rid of an unnecessary smart-pointer get() call
This commit is contained in:
parent
dd5df05c01
commit
66a576548c
@ -707,7 +707,7 @@ bool SConfig::AutoSetup(EBootBS2 _BootBS2)
|
||||
m_revision = pVolume->GetRevision();
|
||||
|
||||
// Check if we have a Wii disc
|
||||
bWii = pVolume.get()->GetVolumeType() == DiscIO::IVolume::WII_DISC;
|
||||
bWii = pVolume->GetVolumeType() == DiscIO::IVolume::WII_DISC;
|
||||
|
||||
const char* retrieved_region_dir = GetRegionOfCountry(pVolume->GetCountry());
|
||||
if (!retrieved_region_dir)
|
||||
|
Loading…
Reference in New Issue
Block a user