mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-28 11:49:06 +00:00
Rename BPMEM_EFB_BR to BPMEM_EFB_WH
This commit is contained in:
parent
81b84a5ebe
commit
762fe33a3d
2 changed files with 4 additions and 5 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue