mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-29 12:19:12 +00: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:
parent
051c2e0784
commit
e05e2179c3
1 changed files with 2 additions and 2 deletions
|
@ -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();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue