From e05e2179c36eddbc796aa1a08fa412d81e4cb009 Mon Sep 17 00:00:00 2001 From: "XTra.KrazzY" Date: Thu, 28 Aug 2008 08:00:40 +0000 Subject: [PATCH] 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 --- Source/Core/VideoCommon/Src/VideoState.cpp | 4 ++-- 1 file 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(); }