mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-21 05:09:34 -06:00
DataReader: turn WritePointer into GetPointer
This commit is contained in:
@ -15,9 +15,9 @@ public:
|
||||
__forceinline DataReader(u8* src, u8* _end)
|
||||
: buffer(src), end(_end) {}
|
||||
|
||||
__forceinline void WritePointer(u8** src)
|
||||
__forceinline u8* GetPointer()
|
||||
{
|
||||
*src = buffer;
|
||||
return buffer;
|
||||
}
|
||||
|
||||
__forceinline u8* operator=(u8* src)
|
||||
|
Reference in New Issue
Block a user