summaryrefslogtreecommitdiff
path: root/Source/Core/VideoCommon
diff options
context:
space:
mode:
authorShawn Hoffman <godisgovernment@gmail.com>2009-02-28 23:02:46 +0000
committerShawn Hoffman <godisgovernment@gmail.com>2009-02-28 23:02:46 +0000
commit1577dc6893892589ce847e1eed3c4e4f978048a2 (patch)
tree4b2dc21f39c22ca4b6ddbdc99603e9ab3d665c47 /Source/Core/VideoCommon
parent3ed65fce0d86be1ea6071c47e0853ef1d7103f65 (diff)
more build fixin'
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@2487 8ced0084-cf51-0410-be5f-012b33b47a6e
Diffstat (limited to 'Source/Core/VideoCommon')
-rw-r--r--Source/Core/VideoCommon/Src/OpcodeDecoding.cpp2
-rw-r--r--Source/Core/VideoCommon/Src/XFStructs.cpp6
2 files changed, 4 insertions, 4 deletions
diff --git a/Source/Core/VideoCommon/Src/OpcodeDecoding.cpp b/Source/Core/VideoCommon/Src/OpcodeDecoding.cpp
index 7c3b66cc83..9342c3e7df 100644
--- a/Source/Core/VideoCommon/Src/OpcodeDecoding.cpp
+++ b/Source/Core/VideoCommon/Src/OpcodeDecoding.cpp
@@ -261,7 +261,7 @@ static void Decode()
break;
case GX_CMD_INVL_VC:// Invalidate (vertex cache?)
- DEBUG_LOG("Invalidate (vertex cache?)");
+ DEBUG_LOG(VIDEO, "Invalidate (vertex cache?)");
break;
case GX_LOAD_BP_REG: //0x61
diff --git a/Source/Core/VideoCommon/Src/XFStructs.cpp b/Source/Core/VideoCommon/Src/XFStructs.cpp
index e0b06aab4a..7a0d07959e 100644
--- a/Source/Core/VideoCommon/Src/XFStructs.cpp
+++ b/Source/Core/VideoCommon/Src/XFStructs.cpp
@@ -140,7 +140,7 @@ void LoadXFReg(u32 transferSize, u32 baseAddress, u32 *pData)
case 0x1015:
case 0x1016:
case 0x1017:
- DEBUG_LOG("xf addr: %x=%x\n", address, data);
+ DEBUG_LOG(VIDEO, "xf addr: %x=%x\n", address, data);
break;
case 0x1018:
//_assert_msg_(GX_XF, 0, "XF matrixindex0");
@@ -192,7 +192,7 @@ void LoadXFReg(u32 transferSize, u32 baseAddress, u32 *pData)
case 0x104d:
case 0x104e:
case 0x104f:
- DEBUG_LOG("xf addr: %x=%x\n", address, data);
+ DEBUG_LOG(VIDEO, "xf addr: %x=%x\n", address, data);
break;
case 0x1050: xfregs.texcoords[0].postmtxinfo.hex = data; break;
case 0x1051: xfregs.texcoords[1].postmtxinfo.hex = data; break;
@@ -204,7 +204,7 @@ void LoadXFReg(u32 transferSize, u32 baseAddress, u32 *pData)
case 0x1057: xfregs.texcoords[7].postmtxinfo.hex = data; break;
default:
- DEBUG_LOG("xf addr: %x=%x\n", address, data);
+ DEBUG_LOG(VIDEO, "xf addr: %x=%x\n", address, data);
break;
}
}