Skip to content
Snippets Groups Projects
Unverified Commit b93a8a36 authored by bunnei's avatar bunnei Committed by GitHub
Browse files

Merge pull request #2288 from lioncash/linkage

core/cheat_engine: Make MemoryReadImpl and MemoryWriteImpl internally linked
parents 3f74518e b26481c9
No related branches found
No related tags found
No related merge requests found
......@@ -423,6 +423,7 @@ std::array<u8, 16> TextCheatParser::ParseSingleLineCheat(const std::string& line
return out;
}
namespace {
u64 MemoryReadImpl(u32 width, VAddr addr) {
switch (width) {
case 1:
......@@ -457,6 +458,7 @@ void MemoryWriteImpl(u32 width, VAddr addr, u64 value) {
UNREACHABLE();
}
}
} // Anonymous namespace
CheatEngine::CheatEngine(Core::System& system, std::vector<CheatList> cheats_,
const std::string& build_id, VAddr code_region_start,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment