mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2025-07-24 12:35:47 +00:00
cmd/config: Remove uncaught usage of stoul
This commit is contained in:
parent
c750d6965a
commit
05ee2fa033
1 changed files with 1 additions and 1 deletions
|
@ -259,7 +259,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 = sdl2_config->Get("AddOns", "disabled_" + line, "");
|
||||
|
||||
std::stringstream inner_ss(disabled_list);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue