I have broken something, but more may be broken
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@369 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
parent
051c2e0784
commit
e05e2179c3
|
@ -18,7 +18,7 @@
|
|||
#include "VideoState.h"
|
||||
#include "TextureDecoder.h"
|
||||
|
||||
void DoState(ChunkFile &f) {
|
||||
static void DoState(ChunkFile &f) {
|
||||
// BP Memory
|
||||
f.Do(bpmem);
|
||||
// CP Memory
|
||||
|
@ -46,6 +46,6 @@ void VideoCommon_DoState(ChunkFile &f) {
|
|||
//PanicAlert("Saving state from Video Common Library");
|
||||
//TODO: Save the video state
|
||||
f.Descend("VID ");
|
||||
f.DoState(f);
|
||||
DoState(f);
|
||||
f.Ascend();
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue