calling SwapBuffers from hw_lcd.cpp

This commit is contained in:
bunnei 2014-04-06 16:56:13 -04:00
parent 551b2a52e0
commit f0d49253e4
1 changed files with 2 additions and 0 deletions

View File

@ -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();
}
}