mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-02 22:29:21 +00:00
Merge pull request #4578 from ligfx/fixloaddefaults
ControllerEmu: Fix LoadDefaults to use ciface argument
This commit is contained in:
commit
4a4d629f0e
1 changed files with 1 additions and 1 deletions
|
@ -317,7 +317,7 @@ void ControllerEmu::LoadDefaults(const ControllerInterface& ciface)
|
||||||
IniFile::Section sec;
|
IniFile::Section sec;
|
||||||
LoadConfig(&sec);
|
LoadConfig(&sec);
|
||||||
|
|
||||||
const std::string& default_device_string = g_controller_interface.GetDefaultDeviceString();
|
const std::string& default_device_string = ciface.GetDefaultDeviceString();
|
||||||
if (!default_device_string.empty())
|
if (!default_device_string.empty())
|
||||||
{
|
{
|
||||||
default_device.FromString(default_device_string);
|
default_device.FromString(default_device_string);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue