diff options
author | bunnei <ericbunnie@gmail.com> | 2014-04-11 04:49:12 +0200 |
---|---|---|
committer | bunnei <ericbunnie@gmail.com> | 2014-04-11 04:49:12 +0200 |
commit | 01bedbf956a261fb339eba6901716510cc8c9ca2 (patch) | |
tree | 8ba36c57b60923b14ac5240b6c2b89ce64efff9f | |
parent | cleaned up some logging messages (diff) | |
download | yuzu-01bedbf956a261fb339eba6901716510cc8c9ca2.tar yuzu-01bedbf956a261fb339eba6901716510cc8c9ca2.tar.gz yuzu-01bedbf956a261fb339eba6901716510cc8c9ca2.tar.bz2 yuzu-01bedbf956a261fb339eba6901716510cc8c9ca2.tar.lz yuzu-01bedbf956a261fb339eba6901716510cc8c9ca2.tar.xz yuzu-01bedbf956a261fb339eba6901716510cc8c9ca2.tar.zst yuzu-01bedbf956a261fb339eba6901716510cc8c9ca2.zip |
-rw-r--r-- | src/core/hw/hw_lcd.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/hw/hw_lcd.cpp b/src/core/hw/hw_lcd.cpp index fd783a84a..9fb485bac 100644 --- a/src/core/hw/hw_lcd.cpp +++ b/src/core/hw/hw_lcd.cpp @@ -37,12 +37,12 @@ void Update() { /// Initialize hardware void Init() { g_last_ticks = Core::g_app_core->GetTicks(); - NOTICE_LOG(LCD, "LCD initialized OK"); + NOTICE_LOG(LCD, "initialized OK"); } /// Shutdown hardware void Shutdown() { - NOTICE_LOG(LCD, "LCD shutdown OK"); + NOTICE_LOG(LCD, "shutdown OK"); } } // namespace |