diff options
author | liamwhite <liamwhite@users.noreply.github.com> | 2023-09-16 11:40:03 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-16 11:40:03 -0400 |
commit | c05ea35f78bd4de663bc022a7048e88d6ade594b (patch) | |
tree | cee0c61ea4a84b2d876ac7c69d38542967bfb919 /src/core/memory | |
parent | 7f705870d2255b8f45c3f38efe8906ed89073223 (diff) | |
parent | 5d52d73c4b2781fd99260534c17e35640ab17589 (diff) |
Merge pull request #11492 from lat9nq/c-numeric-conversions
general: Remove uncaught usages of C++ string number conversions
Diffstat (limited to 'src/core/memory')
-rw-r--r-- | src/core/memory/cheat_engine.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/memory/cheat_engine.cpp b/src/core/memory/cheat_engine.cpp index 7b52f61a7..a06e99166 100644 --- a/src/core/memory/cheat_engine.cpp +++ b/src/core/memory/cheat_engine.cpp @@ -154,7 +154,7 @@ std::vector<CheatEntry> TextCheatParser::Parse(std::string_view data) const { return {}; } - const auto value = static_cast<u32>(std::stoul(hex, nullptr, 0x10)); + const auto value = static_cast<u32>(std::strtoul(hex.c_str(), nullptr, 0x10)); out[*current_entry].definition.opcodes[out[*current_entry].definition.num_opcodes++] = value; |