summaryrefslogtreecommitdiff
path: root/Source/Core/VideoCommon/BPStructs.cpp
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2014-06-02 02:26:24 -0400
committerLioncash <mathew1800@gmail.com>2014-06-02 02:26:30 -0400
commit776e36b10ab6fb0118a82411fb757003856aedb8 (patch)
tree724a88802d5e810593b65e6bfe12fbb1ffe1378f /Source/Core/VideoCommon/BPStructs.cpp
parent12db98909838782825a47ba391646a6a97884f85 (diff)
Fix a typo in a BP register name (BPMEM_TX_SETLUT_4 -> BPMEM_TX_SETTLUT_4).
Also fixed the alignment of the register values.
Diffstat (limited to 'Source/Core/VideoCommon/BPStructs.cpp')
-rw-r--r--Source/Core/VideoCommon/BPStructs.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/Source/Core/VideoCommon/BPStructs.cpp b/Source/Core/VideoCommon/BPStructs.cpp
index e81c98276a..1ef06c5716 100644
--- a/Source/Core/VideoCommon/BPStructs.cpp
+++ b/Source/Core/VideoCommon/BPStructs.cpp
@@ -545,7 +545,7 @@ static void BPWritten(const BPCmd& bp)
// BPMEM_TX_SETTLUT - Format, TMEM Offset (offset of TLUT from start of TMEM high bank > > 5)
// -------------------------------
case BPMEM_TX_SETTLUT:
- case BPMEM_TX_SETLUT_4:
+ case BPMEM_TX_SETTLUT_4:
return;
// ---------------------------------------------------
@@ -1112,10 +1112,10 @@ void GetBPRegInfo(const u8* data, std::string* name, std::string* desc)
case BPMEM_TX_SETTLUT+1:
case BPMEM_TX_SETTLUT+2:
case BPMEM_TX_SETTLUT+3:
- case BPMEM_TX_SETLUT_4: // 0xB8
- case BPMEM_TX_SETLUT_4+1:
- case BPMEM_TX_SETLUT_4+2:
- case BPMEM_TX_SETLUT_4+3:
+ case BPMEM_TX_SETTLUT_4: // 0xB8
+ case BPMEM_TX_SETTLUT_4+1:
+ case BPMEM_TX_SETTLUT_4+2:
+ case BPMEM_TX_SETTLUT_4+3:
SetRegName(BPMEM_TX_SETTLUT);
// TODO: Description
break;