diff options
| author | 2014-04-10 22:49:12 -0400 | |
|---|---|---|
| committer | 2014-04-10 22:49:12 -0400 | |
| commit | 01bedbf956a261fb339eba6901716510cc8c9ca2 (patch) | |
| tree | 8ba36c57b60923b14ac5240b6c2b89ce64efff9f /src | |
| parent | cleaned up some logging messages (diff) | |
| download | yuzu-01bedbf956a261fb339eba6901716510cc8c9ca2.tar.gz yuzu-01bedbf956a261fb339eba6901716510cc8c9ca2.tar.xz yuzu-01bedbf956a261fb339eba6901716510cc8c9ca2.zip | |
updated logging message
Diffstat (limited to 'src')
| -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() { | |||
| 37 | /// Initialize hardware | 37 | /// Initialize hardware |
| 38 | void Init() { | 38 | void Init() { |
| 39 | g_last_ticks = Core::g_app_core->GetTicks(); | 39 | g_last_ticks = Core::g_app_core->GetTicks(); |
| 40 | NOTICE_LOG(LCD, "LCD initialized OK"); | 40 | NOTICE_LOG(LCD, "initialized OK"); |
| 41 | } | 41 | } |
| 42 | 42 | ||
| 43 | /// Shutdown hardware | 43 | /// Shutdown hardware |
| 44 | void Shutdown() { | 44 | void Shutdown() { |
| 45 | NOTICE_LOG(LCD, "LCD shutdown OK"); | 45 | NOTICE_LOG(LCD, "shutdown OK"); |
| 46 | } | 46 | } |
| 47 | 47 | ||
| 48 | } // namespace | 48 | } // namespace |