mirror of
https://github.com/yuzu-mirror/yuzu.git
synced 2024-11-17 13:47:33 +01:00
android/config: Remove uncaught usage of stoul
This commit is contained in:
parent
3f52b5167b
commit
85e1754728
@ -282,7 +282,7 @@ void Config::ReadValues() {
|
||||
std::stringstream ss(title_list);
|
||||
std::string line;
|
||||
while (std::getline(ss, line, '|')) {
|
||||
const auto title_id = std::stoul(line, nullptr, 16);
|
||||
const auto title_id = std::strtoul(line.c_str(), nullptr, 16);
|
||||
const auto disabled_list = config->Get("AddOns", "disabled_" + line, "");
|
||||
|
||||
std::stringstream inner_ss(disabled_list);
|
||||
|
Loading…
Reference in New Issue
Block a user