fixed Video_SaveState & Video_LoadState in OGL/DX that made dolphin unable to load the plugins
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@352 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
parent
6c5f0fc0f3
commit
794f656188
|
@ -166,12 +166,12 @@ void Video_Initialize(SVideoInitialize* _pVideoInitialize)
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void Video_SaveState() {
|
void Video_SaveState(void) {
|
||||||
VideoCommon_SaveState();
|
VideoCommon_SaveState();
|
||||||
//PanicAlert("Saving state from DirectX9");
|
//PanicAlert("Saving state from DirectX9");
|
||||||
}
|
}
|
||||||
|
|
||||||
void Video_LoadState() {
|
void Video_LoadState(void) {
|
||||||
VideoCommon_LoadState();
|
VideoCommon_LoadState();
|
||||||
//PanicAlert("Loading state from DirectX9");
|
//PanicAlert("Loading state from DirectX9");
|
||||||
}
|
}
|
||||||
|
|
|
@ -179,12 +179,12 @@ void Video_Initialize(SVideoInitialize* _pVideoInitialize)
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void Video_SaveState() {
|
void Video_SaveState(void) {
|
||||||
VideoCommon_SaveState();
|
VideoCommon_SaveState();
|
||||||
//PanicAlert("Saving state from OpenGL");
|
//PanicAlert("Saving state from OpenGL");
|
||||||
}
|
}
|
||||||
|
|
||||||
void Video_LoadState() {
|
void Video_LoadState(void) {
|
||||||
VideoCommon_LoadState();
|
VideoCommon_LoadState();
|
||||||
//PanicAlert("Loading state from OpenGL");
|
//PanicAlert("Loading state from OpenGL");
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue