diff options
| author | donkopunchstania <donkopunchstania@gmail.com> | 2009-10-10 21:19:39 +0000 |
|---|---|---|
| committer | donkopunchstania <donkopunchstania@gmail.com> | 2009-10-10 21:19:39 +0000 |
| commit | 56214e91037279fb16cca0af75c1dec2d8432426 (patch) | |
| tree | 353ae7939c065e55d08e425553482d64668f112f /Source/Core/VideoCommon/Src/OpcodeDecoding.cpp | |
| parent | 5049fcf9f547676aba022d3be8e1b2145b24e9b4 (diff) | |
Moving pixel engine and command processor from core to video common. This will break previous save states. Adds decoding single pixels to texture decoder.
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@4391 8ced0084-cf51-0410-be5f-012b33b47a6e
Diffstat (limited to 'Source/Core/VideoCommon/Src/OpcodeDecoding.cpp')
| -rw-r--r-- | Source/Core/VideoCommon/Src/OpcodeDecoding.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Source/Core/VideoCommon/Src/OpcodeDecoding.cpp b/Source/Core/VideoCommon/Src/OpcodeDecoding.cpp index f5d0b41211..3e04c71266 100644 --- a/Source/Core/VideoCommon/Src/OpcodeDecoding.cpp +++ b/Source/Core/VideoCommon/Src/OpcodeDecoding.cpp @@ -29,6 +29,7 @@ #include "VideoCommon.h" #include "Profiler.h" #include "OpcodeDecoding.h" +#include "CommandProcessor.h" #include "VertexLoaderManager.h" @@ -170,7 +171,7 @@ bool FifoCommandRunnable() g_VideoInitialize.pSysMessage(szTemp); g_VideoInitialize.pLog(szTemp, TRUE); { - SCPFifoStruct &fifo = *g_VideoInitialize.pCPFifo; + SCPFifoStruct &fifo = CommandProcessor::fifo; char szTmp[256]; // sprintf(szTmp, "Illegal command %02x (at %08x)",cmd_byte,g_pDataReader->GetPtr()); |
