diff options
author | Arisotura <thetotalworm@gmail.com> | 2022-03-14 01:09:07 +0100 |
---|---|---|
committer | Arisotura <thetotalworm@gmail.com> | 2022-03-14 01:09:07 +0100 |
commit | d8f87df2b7505b8576e078482f8d8d7e897feeb2 (patch) | |
tree | 5c3afb291eed6898f5403d1eb9411ddaa8006e9a | |
parent | fb7bea06f80c78047b61667667551f0726bc38d6 (diff) |
DISPCAPCNT is writable at any time
-rw-r--r-- | src/GPU2D.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/GPU2D.cpp b/src/GPU2D.cpp index 9c48d6e..edc1673 100644 --- a/src/GPU2D.cpp +++ b/src/GPU2D.cpp @@ -521,8 +521,6 @@ void Unit::Write32(u32 addr, u32 val) return; case 0x064: - // TODO: check what happens when writing to it during display - // esp. if a capture is happening CaptureCnt = val & 0xEF3F1F1F; return; @@ -721,4 +719,4 @@ void Unit::GetOBJVRAM(u8*& data, u32& mask) } } -}
\ No newline at end of file +} |