summaryrefslogtreecommitdiff
path: root/Source/Core/VideoCommon/VideoState.cpp
diff options
context:
space:
mode:
authorPierre Bourdon <delroth@gmail.com>2016-01-13 01:27:24 +0100
committerPierre Bourdon <delroth@gmail.com>2016-01-13 01:27:24 +0100
commit8f8134f5f4da2ff29f58c8f373ed1f5c64bcdf71 (patch)
tree74f8317e0e5e161a21c636a6388cc3013bfe837c /Source/Core/VideoCommon/VideoState.cpp
parent82f3b94ad7a344972a26cb87d4ab362fd1397738 (diff)
parentaa430c10d573b5e73154b8fbb7d661a58e44df68 (diff)
Merge pull request #3504 from degasus/master
VideoBackend: Cleanup API a bit.
Diffstat (limited to 'Source/Core/VideoCommon/VideoState.cpp')
-rw-r--r--Source/Core/VideoCommon/VideoState.cpp14
1 files changed, 2 insertions, 12 deletions
diff --git a/Source/Core/VideoCommon/VideoState.cpp b/Source/Core/VideoCommon/VideoState.cpp
index 9f2b11f31c..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);
@@ -35,7 +35,7 @@ static void DoState(PointerWrap &p)
p.DoMarker("texMem");
// FIFO
- Fifo_DoState(p);
+ Fifo::DoState(p);
p.DoMarker("Fifo");
CommandProcessor::DoState(p);
@@ -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)
-{
- EmulatorState(enable);
-}
-
void VideoCommon_Init()
{
memset(&g_main_cp_state, 0, sizeof(g_main_cp_state));