diff options
| author | Lioncash <mathew1800@gmail.com> | 2014-11-05 02:22:33 -0500 |
|---|---|---|
| committer | Lioncash <mathew1800@gmail.com> | 2014-11-05 02:30:48 -0500 |
| commit | 884ec2ed13bd47c188317a9b91b8af20876d9919 (patch) | |
| tree | f35156fde31ae0c362e49642c0de5cced069b0b9 /Source/Core/Common/Logging/LogManager.cpp | |
| parent | a66b34cfc6732ee32c1fca67e07828dd380ee38e (diff) | |
Host: Kill off Host_SysMessage
Equivalent facilities already exist.
Diffstat (limited to 'Source/Core/Common/Logging/LogManager.cpp')
| -rw-r--r-- | Source/Core/Common/Logging/LogManager.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/Core/Common/Logging/LogManager.cpp b/Source/Core/Common/Logging/LogManager.cpp index 7ce347cbda..2648be986b 100644 --- a/Source/Core/Common/Logging/LogManager.cpp +++ b/Source/Core/Common/Logging/LogManager.cpp @@ -10,7 +10,7 @@ #include <string> #ifdef ANDROID -#include "Core/Host.h" +#include <android/log.h> #endif #include "Common/FileUtil.h" #include "Common/IniFile.h" @@ -141,7 +141,7 @@ void LogManager::Log(LogTypes::LOG_LEVELS level, LogTypes::LOG_TYPE type, LogTypes::LOG_LEVEL_TO_CHAR[(int)level], log->GetShortName().c_str(), temp); #ifdef ANDROID - Host_SysMessage(msg.c_str()); + __android_log_write(ANDROID_LOG_INFO, "Dolphinemu", msg.c_str()); #endif log->Trigger(level, msg.c_str()); } |
