diff options
| author | degasus <wickmarkus@web.de> | 2016-01-12 22:44:58 +0100 |
|---|---|---|
| committer | degasus <wickmarkus@web.de> | 2016-01-12 23:28:26 +0100 |
| commit | 5f244abf2833db9d3a7d93a0632b56c4bf55e5e7 (patch) | |
| tree | e570af842d310da10ebc9ffde3bb50cc8532c0fc /Source/Core/VideoCommon/VideoState.cpp | |
| parent | c3481a576bb445645332de20534687b6a927843d (diff) | |
Fifo: Create a "Fifo" namespace.
Diffstat (limited to 'Source/Core/VideoCommon/VideoState.cpp')
| -rw-r--r-- | Source/Core/VideoCommon/VideoState.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/Core/VideoCommon/VideoState.cpp b/Source/Core/VideoCommon/VideoState.cpp index 9f2b11f31c..53fa4f0c89 100644 --- a/Source/Core/VideoCommon/VideoState.cpp +++ b/Source/Core/VideoCommon/VideoState.cpp @@ -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); @@ -71,7 +71,7 @@ void VideoCommon_DoState(PointerWrap &p) void VideoCommon_RunLoop(bool enable) { - EmulatorState(enable); + Fifo::EmulatorState(enable); } void VideoCommon_Init() |
