mirror of
https://github.com/Lime3DS/Lime3DS
synced 2024-10-31 20:27:52 +00:00
GPU: Correct wrong default framebuffer address for sub-screen.
It appears this is a mistake, since the sub-screen has no right framebuffer.
This commit is contained in:
parent
5961a2852d
commit
e29dd76e12
1 changed files with 2 additions and 2 deletions
|
@ -252,8 +252,8 @@ void Init() {
|
|||
framebuffer_top.address_right1 = 0x18273000;
|
||||
framebuffer_top.address_right2 = 0x182B9800;
|
||||
framebuffer_sub.address_left1 = 0x1848F000;
|
||||
//framebuffer_sub.address_left2 = unknown;
|
||||
framebuffer_sub.address_right1 = 0x184C7800;
|
||||
framebuffer_sub.address_left2 = 0x184C7800;
|
||||
//framebuffer_sub.address_right1 = unknown;
|
||||
//framebuffer_sub.address_right2 = unknown;
|
||||
|
||||
framebuffer_top.width = 240;
|
||||
|
|
Loading…
Reference in a new issue