diff options
Diffstat (limited to 'Source/Core/VideoCommon/Src/VideoState.cpp')
| -rw-r--r-- | Source/Core/VideoCommon/Src/VideoState.cpp | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/Source/Core/VideoCommon/Src/VideoState.cpp b/Source/Core/VideoCommon/Src/VideoState.cpp index ad5384cda9..0d99d0378f 100644 --- a/Source/Core/VideoCommon/Src/VideoState.cpp +++ b/Source/Core/VideoCommon/Src/VideoState.cpp @@ -30,33 +30,33 @@ static void DoState(PointerWrap &p) { - // BP Memory - p.Do(bpmem); + // BP Memory + p.Do(bpmem); p.DoMarker("BP Memory"); // CP Memory - p.DoArray(arraybases, 16); - p.DoArray(arraystrides, 16); - p.Do(MatrixIndexA); - p.Do(MatrixIndexB); - p.Do(g_VtxDesc.Hex); + p.DoArray(arraybases, 16); + p.DoArray(arraystrides, 16); + p.Do(MatrixIndexA); + p.Do(MatrixIndexB); + p.Do(g_VtxDesc.Hex); p.DoArray(g_VtxAttr, 8); p.DoMarker("CP Memory"); - // XF Memory - p.Do(xfregs); - p.DoArray(xfmem, XFMEM_SIZE); + // XF Memory + p.Do(xfregs); + p.DoArray(xfmem, XFMEM_SIZE); p.DoMarker("XF Memory"); // Texture decoder - p.DoArray(texMem, TMEM_SIZE); + p.DoArray(texMem, TMEM_SIZE); p.DoMarker("texMem"); - // FIFO - Fifo_DoState(p); + // FIFO + Fifo_DoState(p); p.DoMarker("Fifo"); - CommandProcessor::DoState(p); + CommandProcessor::DoState(p); p.DoMarker("CommandProcessor"); PixelEngine::DoState(p); @@ -77,7 +77,7 @@ static void DoState(PointerWrap &p) void VideoCommon_DoState(PointerWrap &p) { - DoState(p); + DoState(p); } void VideoCommon_RunLoop(bool enable) |
