mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-29 12:19:12 +00:00
initialize the uninitialized
This commit is contained in:
parent
81a1efab8e
commit
39613a95a8
24 changed files with 157 additions and 11 deletions
|
@ -140,6 +140,7 @@ class VideoBackendHardware : public VideoBackend
|
|||
{
|
||||
void DoState(PointerWrap &p);
|
||||
void RunLoop(bool enable);
|
||||
bool Initialize(void *&) { InitializeShared(); return true; }
|
||||
|
||||
void EmuStateChange(EMUSTATE_CHANGE);
|
||||
|
||||
|
@ -165,6 +166,9 @@ class VideoBackendHardware : public VideoBackend
|
|||
readFn16 Video_PERead16();
|
||||
writeFn16 Video_PEWrite16();
|
||||
writeFn32 Video_PEWrite32();
|
||||
|
||||
protected:
|
||||
void InitializeShared();
|
||||
};
|
||||
|
||||
#endif
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue