Skip to content
Snippets Groups Projects
Commit d9bb4f11 authored by bunnei's avatar bunnei
Browse files

added Memory::GetCharPointer to read strings from HLE functions

parent 95e5436f
No related branches found
No related tags found
No related merge requests found
......@@ -70,4 +70,8 @@ void Write32(const u32 addr, const u32 data);
u8* GetPointer(const u32 Address);
inline const char* GetCharPointer(const u32 address) {
return (const char *)GetPointer(address);
}
} // namespace
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