summaryrefslogtreecommitdiff
path: root/src/core/hw/gpu.cpp
diff options
context:
space:
mode:
authorGravatar Yuri Kunde Schlesner2015-01-13 23:57:45 -0200
committerGravatar Yuri Kunde Schlesner2015-01-14 05:20:13 -0200
commite29dd76e12d31ed3927d4860c0bcc3d808443932 (patch)
tree59927631e3eec7c23afb40b9dcf80590de94b013 /src/core/hw/gpu.cpp
parentGSP: Update framebuffer info on all interrupts (diff)
downloadyuzu-e29dd76e12d31ed3927d4860c0bcc3d808443932.tar.gz
yuzu-e29dd76e12d31ed3927d4860c0bcc3d808443932.tar.xz
yuzu-e29dd76e12d31ed3927d4860c0bcc3d808443932.zip
GPU: Correct wrong default framebuffer address for sub-screen.
It appears this is a mistake, since the sub-screen has no right framebuffer.
Diffstat (limited to 'src/core/hw/gpu.cpp')
-rw-r--r--src/core/hw/gpu.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/hw/gpu.cpp b/src/core/hw/gpu.cpp
index ad39fdc49..49136b7e1 100644
--- a/src/core/hw/gpu.cpp
+++ b/src/core/hw/gpu.cpp
@@ -252,8 +252,8 @@ void Init() {
252 framebuffer_top.address_right1 = 0x18273000; 252 framebuffer_top.address_right1 = 0x18273000;
253 framebuffer_top.address_right2 = 0x182B9800; 253 framebuffer_top.address_right2 = 0x182B9800;
254 framebuffer_sub.address_left1 = 0x1848F000; 254 framebuffer_sub.address_left1 = 0x1848F000;
255 //framebuffer_sub.address_left2 = unknown; 255 framebuffer_sub.address_left2 = 0x184C7800;
256 framebuffer_sub.address_right1 = 0x184C7800; 256 //framebuffer_sub.address_right1 = unknown;
257 //framebuffer_sub.address_right2 = unknown; 257 //framebuffer_sub.address_right2 = unknown;
258 258
259 framebuffer_top.width = 240; 259 framebuffer_top.width = 240;