mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-21 05:09:34 -06:00
Fix IniFile to use string& instead of char*
Also removes .c_str() usages where found.
This commit is contained in:
@ -101,7 +101,7 @@ namespace ButtonManager
|
||||
bool hasbind = false;
|
||||
char modifier = 0;
|
||||
std::string value;
|
||||
ini.Get("Android", config.str().c_str(), &value, "None");
|
||||
ini.Get("Android", config.str(), &value, "None");
|
||||
if (value == "None")
|
||||
continue;
|
||||
if (std::string::npos != value.find("Axis"))
|
||||
|
Reference in New Issue
Block a user