mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 14:19:46 -06:00
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:
@ -18,7 +18,7 @@
|
|||||||
#include "VideoState.h"
|
#include "VideoState.h"
|
||||||
#include "TextureDecoder.h"
|
#include "TextureDecoder.h"
|
||||||
|
|
||||||
void DoState(ChunkFile &f) {
|
static void DoState(ChunkFile &f) {
|
||||||
// BP Memory
|
// BP Memory
|
||||||
f.Do(bpmem);
|
f.Do(bpmem);
|
||||||
// CP Memory
|
// CP Memory
|
||||||
@ -46,6 +46,6 @@ void VideoCommon_DoState(ChunkFile &f) {
|
|||||||
//PanicAlert("Saving state from Video Common Library");
|
//PanicAlert("Saving state from Video Common Library");
|
||||||
//TODO: Save the video state
|
//TODO: Save the video state
|
||||||
f.Descend("VID ");
|
f.Descend("VID ");
|
||||||
f.DoState(f);
|
DoState(f);
|
||||||
f.Ascend();
|
f.Ascend();
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user