summaryrefslogtreecommitdiff
path: root/Source/Core/VideoCommon/VideoState.cpp
diff options
context:
space:
mode:
authordegasus <wickmarkus@web.de>2016-01-12 22:46:44 +0100
committerdegasus <wickmarkus@web.de>2016-01-12 23:28:26 +0100
commitaa430c10d573b5e73154b8fbb7d661a58e44df68 (patch)
tree1e129f7865ee4274a572fd2f86ec314e00892c31 /Source/Core/VideoCommon/VideoState.cpp
parent5f244abf2833db9d3a7d93a0632b56c4bf55e5e7 (diff)
VideoState: Simplify dummy wrapper.
Diffstat (limited to 'Source/Core/VideoCommon/VideoState.cpp')
-rw-r--r--Source/Core/VideoCommon/VideoState.cpp12
1 files changed, 1 insertions, 11 deletions
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));