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

calling SwapBuffers from hw_lcd.cpp

parent 551b2a52
No related branches found
No related tags found
No related merge requests found
......@@ -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();
}
}
......
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