diff --git a/Source/Core/VideoCommon/VideoState.cpp b/Source/Core/VideoCommon/VideoState.cpp index 53fa4f0c89..355742367e 100644 --- a/Source/Core/VideoCommon/VideoState.cpp +++ b/Source/Core/VideoCommon/VideoState.cpp @@ -17,7 +17,7 @@ #include "VideoCommon/VideoState.h" #include "VideoCommon/XFMemory.h" -static void DoState(PointerWrap &p) +void VideoCommon_DoState(PointerWrap &p) { // BP Memory p.Do(bpmem); @@ -64,16 +64,6 @@ static void DoState(PointerWrap &p) // TODO: search for more data that should be saved and add it here } -void VideoCommon_DoState(PointerWrap &p) -{ - DoState(p); -} - -void VideoCommon_RunLoop(bool enable) -{ - Fifo::EmulatorState(enable); -} - void VideoCommon_Init() { memset(&g_main_cp_state, 0, sizeof(g_main_cp_state)); diff --git a/Source/Core/VideoCommon/VideoState.h b/Source/Core/VideoCommon/VideoState.h index b77b3e529d..ec25cdca5d 100644 --- a/Source/Core/VideoCommon/VideoState.h +++ b/Source/Core/VideoCommon/VideoState.h @@ -7,5 +7,4 @@ class PointerWrap; void VideoCommon_DoState(PointerWrap &p); -void VideoCommon_RunLoop(bool enable); void VideoCommon_Init();