diff options
author | bunnei <ericbunnie@gmail.com> | 2014-04-07 04:56:25 +0200 |
---|---|---|
committer | bunnei <ericbunnie@gmail.com> | 2014-04-07 04:56:25 +0200 |
commit | 6f7fd741db1b2716753bae2aea75e7dabde92e9f (patch) | |
tree | fff0eabf86e2790bea39bc8627db7e059cd44b34 | |
parent | added hack physical memory reads with Memory::GetPointer (diff) | |
download | yuzu-6f7fd741db1b2716753bae2aea75e7dabde92e9f.tar yuzu-6f7fd741db1b2716753bae2aea75e7dabde92e9f.tar.gz yuzu-6f7fd741db1b2716753bae2aea75e7dabde92e9f.tar.bz2 yuzu-6f7fd741db1b2716753bae2aea75e7dabde92e9f.tar.lz yuzu-6f7fd741db1b2716753bae2aea75e7dabde92e9f.tar.xz yuzu-6f7fd741db1b2716753bae2aea75e7dabde92e9f.tar.zst yuzu-6f7fd741db1b2716753bae2aea75e7dabde92e9f.zip |
-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() { if ((current_ticks - g_last_ticks) >= kFrameTicks) { g_last_ticks = current_ticks; - NOTICE_LOG(LCD, "Update frame"); VideoCore::g_renderer->SwapBuffers(); } } @@ -55,7 +54,6 @@ void Update() { /// Initialize hardware void Init() { g_last_ticks = Core::g_app_core->GetTicks(); - NOTICE_LOG(LCD, "LCD initialized OK"); } |