summaryrefslogtreecommitdiff
path: root/Source
diff options
context:
space:
mode:
authorPokechu22 <Pokechu022@gmail.com>2021-02-07 12:32:45 -0800
committerPokechu22 <Pokechu022@gmail.com>2021-03-06 19:27:16 -0800
commit762fe33a3db823685aa5636bfe5ca372b46f9df7 (patch)
tree7151d4e94e01f69690b7a9c2a7ee26524bbaf448 /Source
parent81b84a5ebefb7396283b49412304544667966d6e (diff)
Rename BPMEM_EFB_BR to BPMEM_EFB_WH
Diffstat (limited to 'Source')
-rw-r--r--Source/Core/VideoCommon/BPMemory.h2
-rw-r--r--Source/Core/VideoCommon/BPStructs.cpp7
2 files changed, 4 insertions, 5 deletions
diff --git a/Source/Core/VideoCommon/BPMemory.h b/Source/Core/VideoCommon/BPMemory.h
index ad107382e4..86cc11f7d8 100644
--- a/Source/Core/VideoCommon/BPMemory.h
+++ b/Source/Core/VideoCommon/BPMemory.h
@@ -45,7 +45,7 @@ enum
BPMEM_PE_TOKEN_ID = 0x47,
BPMEM_PE_TOKEN_INT_ID = 0x48,
BPMEM_EFB_TL = 0x49,
- BPMEM_EFB_BR = 0x4A,
+ BPMEM_EFB_WH = 0x4A,
BPMEM_EFB_ADDR = 0x4B,
BPMEM_MIPMAP_STRIDE = 0x4D,
BPMEM_COPYYSCALE = 0x4E,
diff --git a/Source/Core/VideoCommon/BPStructs.cpp b/Source/Core/VideoCommon/BPStructs.cpp
index 2376fd0840..896aafca30 100644
--- a/Source/Core/VideoCommon/BPStructs.cpp
+++ b/Source/Core/VideoCommon/BPStructs.cpp
@@ -432,7 +432,7 @@ static void BPWritten(const BPCmd& bp)
// EFB Copy config
// ----------------
case BPMEM_EFB_TL: // EFB Source Rect. Top, Left
- case BPMEM_EFB_BR: // EFB Source Rect. Bottom, Right (w, h - 1)
+ case BPMEM_EFB_WH: // EFB Source Rect. Width, Height - 1
case BPMEM_EFB_ADDR: // EFB Target Address
return;
// --------------
@@ -995,10 +995,9 @@ void GetBPRegInfo(const u8* data, std::string* name, std::string* desc)
}
break;
- case BPMEM_EFB_BR: // 0x4A
+ case BPMEM_EFB_WH: // 0x4A
{
- // TODO: Misleading name, should be BPMEM_EFB_WH instead
- SetRegName(BPMEM_EFB_BR);
+ SetRegName(BPMEM_EFB_WH);
X10Y10 width_height;
width_height.hex = cmddata;
*desc = fmt::format("Width: {}\nHeight: {}", width_height.x + 1, width_height.y + 1);