aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/src/hw/hw_lcd.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/src/hw/hw_lcd.cpp')
-rw-r--r--src/core/src/hw/hw_lcd.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/core/src/hw/hw_lcd.cpp b/src/core/src/hw/hw_lcd.cpp
index 7e372834..072eede3 100644
--- a/src/core/src/hw/hw_lcd.cpp
+++ b/src/core/src/hw/hw_lcd.cpp
@@ -25,6 +25,7 @@
#include "log.h"
#include "core.h"
#include "hw_lcd.h"
+#include "video_core.h"
namespace LCD {
@@ -47,6 +48,7 @@ void Update() {
if ((current_ticks - g_last_ticks) >= kFrameTicks) {
g_last_ticks = current_ticks;
NOTICE_LOG(LCD, "Update frame");
+ VideoCore::g_renderer->SwapBuffers();
}
}