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:
daco65 2008-08-27 11:45:51 +00:00
parent 6c5f0fc0f3
commit 794f656188
2 changed files with 25 additions and 25 deletions

View File

@ -166,12 +166,12 @@ void Video_Initialize(SVideoInitialize* _pVideoInitialize)
}
void Video_SaveState() {
void Video_SaveState(void) {
VideoCommon_SaveState();
//PanicAlert("Saving state from DirectX9");
}
void Video_LoadState() {
void Video_LoadState(void) {
VideoCommon_LoadState();
//PanicAlert("Loading state from DirectX9");
}

View File

@ -179,12 +179,12 @@ void Video_Initialize(SVideoInitialize* _pVideoInitialize)
}
void Video_SaveState() {
void Video_SaveState(void) {
VideoCommon_SaveState();
//PanicAlert("Saving state from OpenGL");
}
void Video_LoadState() {
void Video_LoadState(void) {
VideoCommon_LoadState();
//PanicAlert("Loading state from OpenGL");
}