diff options
| author | XTra.KrazzY <XTra.KrazzY@gmail.com> | 2008-08-28 08:00:40 +0000 |
|---|---|---|
| committer | XTra.KrazzY <XTra.KrazzY@gmail.com> | 2008-08-28 08:00:40 +0000 |
| commit | e05e2179c36eddbc796aa1a08fa412d81e4cb009 (patch) | |
| tree | 8454342221a547cdecc63321bcfd1f6124172026 /Source/Core | |
| parent | 051c2e078482dce968a2c990618c6e5b78c9c695 (diff) | |
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
Diffstat (limited to 'Source/Core')
| -rw-r--r-- | Source/Core/VideoCommon/Src/VideoState.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/Core/VideoCommon/Src/VideoState.cpp b/Source/Core/VideoCommon/Src/VideoState.cpp index 0f9b959c4c..8a8642f5dd 100644 --- a/Source/Core/VideoCommon/Src/VideoState.cpp +++ b/Source/Core/VideoCommon/Src/VideoState.cpp @@ -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();
}
|
