mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2026-08-25 20:09:27 -05:00
ChunkFile: Add void* version of DoPointer.
This commit is contained in:
@@ -300,6 +300,13 @@ public:
|
||||
}
|
||||
}
|
||||
|
||||
void DoPointer(void*& x, void* const base)
|
||||
{
|
||||
auto* ptr = static_cast<u8*>(x);
|
||||
DoPointer(ptr, static_cast<u8*>(base));
|
||||
x = ptr;
|
||||
}
|
||||
|
||||
void DoMarker(const std::string& prevName, u32 arbitraryNumber = 0x42)
|
||||
{
|
||||
u32 cookie = arbitraryNumber;
|
||||
|
||||
Reference in New Issue
Block a user