Skip to content
Snippets Groups Projects
Commit d4411acf authored by bunnei's avatar bunnei
Browse files

removed hard-coded framebuffer addresses from renderer_opengl.cpp

parent 9d1a17ca
No related branches found
No related tags found
No related merge requests found
......@@ -2,6 +2,8 @@
// Licensed under GPLv2
// Refer to the license.txt file included.
#include "core/hw/hw_lcd.h"
#include "video_core/video_core.h"
#include "video_core/renderer_opengl/renderer_opengl.h"
......@@ -75,8 +77,8 @@ void RendererOpenGL::FlipFramebuffer(u32 addr, u8* out) {
*/
void RendererOpenGL::RenderXFB(const Rect& src_rect, const Rect& dst_rect) {
FlipFramebuffer(0x20282160, m_xfb_top_flipped);
FlipFramebuffer(0x202118E0, m_xfb_bottom_flipped);
FlipFramebuffer(LCD::TOP_RIGHT_FRAME1, m_xfb_top_flipped);
FlipFramebuffer(LCD::SUB_FRAME1, m_xfb_bottom_flipped);
// Blit the top framebuffer
// ------------------------
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment