diff options
Diffstat (limited to '')
-rw-r--r-- | gui/hardwarekeyboard.cpp | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/gui/hardwarekeyboard.cpp b/gui/hardwarekeyboard.cpp index 39b02cc17..96958d50a 100644 --- a/gui/hardwarekeyboard.cpp +++ b/gui/hardwarekeyboard.cpp @@ -19,9 +19,8 @@ #include <string> extern "C" { -#include "../common.h" +#include "../twcommon.h" #include "../minuitwrp/minui.h" -#include "../recovery_ui.h" } #include "rapidxml.hpp" @@ -37,7 +36,7 @@ HardwareKeyboard::~HardwareKeyboard() { int HardwareKeyboard::KeyDown(int key_code) { #ifdef _EVENT_LOGGING - LOGE("HardwareKeyboard::KeyDown %i\n", key_code); + LOGERR("HardwareKeyboard::KeyDown %i\n", key_code); #endif PageManager::NotifyKey(key_code); return 0; // 0 = no key repeat anything else turns on key repeat @@ -45,14 +44,14 @@ int HardwareKeyboard::KeyDown(int key_code) { int HardwareKeyboard::KeyUp(int key_code) { #ifdef _EVENT_LOGGING - LOGE("HardwareKeyboard::KeyUp %i\n", key_code); + LOGERR("HardwareKeyboard::KeyUp %i\n", key_code); #endif return 0; } int HardwareKeyboard::KeyRepeat(void) { #ifdef _EVENT_LOGGING - LOGE("HardwareKeyboard::KeyRepeat\n"); + LOGERR("HardwareKeyboard::KeyRepeat\n"); #endif return 0; } |