From a17bf47fee07f951e07c69c943255d3841a1bf88 Mon Sep 17 00:00:00 2001 From: cottonvibes Date: Sat, 12 Sep 2009 05:19:59 +0000 Subject: [PATCH] Fixed a compilation problem for release builds. I assume the functions in GSState are currently supposed to be dev-build only? :) git-svn-id: http://pcsx2.googlecode.com/svn/trunk@1807 96395faa-99c1-11dd-bbfe-3dabce05a288 --- pcsx2/GSState.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pcsx2/GSState.cpp b/pcsx2/GSState.cpp index 9b8d7bfa48..da4838d350 100644 --- a/pcsx2/GSState.cpp +++ b/pcsx2/GSState.cpp @@ -17,7 +17,7 @@ #include "GS.h" - +#ifdef PCSX2_DEVBUILD void SaveGSState(const wxString& file) { if( g_SaveGSStream ) return; @@ -150,3 +150,4 @@ void RunGSState( gzLoadingState& f ) it = packets.begin(); } } +#endif \ No newline at end of file