summaryrefslogtreecommitdiff
path: root/Source/Core/VideoCommon/Src/VideoState.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Source/Core/VideoCommon/Src/VideoState.cpp')
-rw-r--r--Source/Core/VideoCommon/Src/VideoState.cpp4
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();
}