diff options
Diffstat (limited to '')
| -rw-r--r-- | src/core/src/hw/hw_lcd.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/core/src/hw/hw_lcd.cpp b/src/core/src/hw/hw_lcd.cpp index 072eede32..ee806d5dc 100644 --- a/src/core/src/hw/hw_lcd.cpp +++ b/src/core/src/hw/hw_lcd.cpp | |||
| @@ -47,7 +47,6 @@ void Update() { | |||
| 47 | 47 | ||
| 48 | if ((current_ticks - g_last_ticks) >= kFrameTicks) { | 48 | if ((current_ticks - g_last_ticks) >= kFrameTicks) { |
| 49 | g_last_ticks = current_ticks; | 49 | g_last_ticks = current_ticks; |
| 50 | NOTICE_LOG(LCD, "Update frame"); | ||
| 51 | VideoCore::g_renderer->SwapBuffers(); | 50 | VideoCore::g_renderer->SwapBuffers(); |
| 52 | } | 51 | } |
| 53 | } | 52 | } |
| @@ -55,7 +54,6 @@ void Update() { | |||
| 55 | /// Initialize hardware | 54 | /// Initialize hardware |
| 56 | void Init() { | 55 | void Init() { |
| 57 | g_last_ticks = Core::g_app_core->GetTicks(); | 56 | g_last_ticks = Core::g_app_core->GetTicks(); |
| 58 | |||
| 59 | NOTICE_LOG(LCD, "LCD initialized OK"); | 57 | NOTICE_LOG(LCD, "LCD initialized OK"); |
| 60 | } | 58 | } |
| 61 | 59 | ||