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:
XTra.KrazzY 2008-08-28 08:00:40 +00:00
parent 051c2e0784
commit e05e2179c3
1 changed files with 2 additions and 2 deletions

View File

@ -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();
}