summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar ShizZy2013-09-17 22:57:59 -0400
committerGravatar ShizZy2013-09-17 22:57:59 -0400
commitdab2d6917bb590855ec34aecb63d47b3be9cd619 (patch)
tree712e45d099df2ac45057c3dd1603cad6110fe8c6
parentadded file platform.h (diff)
downloadyuzu-dab2d6917bb590855ec34aecb63d47b3be9cd619.tar.gz
yuzu-dab2d6917bb590855ec34aecb63d47b3be9cd619.tar.xz
yuzu-dab2d6917bb590855ec34aecb63d47b3be9cd619.zip
initialized log manager
-rw-r--r--src/citrus/src/citrus.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/citrus/src/citrus.cpp b/src/citrus/src/citrus.cpp
index b50c14e80..5471251ba 100644
--- a/src/citrus/src/citrus.cpp
+++ b/src/citrus/src/citrus.cpp
@@ -23,6 +23,7 @@
23 */ 23 */
24 24
25#include "common.h" 25#include "common.h"
26#include "log_manager.h"
26#include "file_util.h" 27#include "file_util.h"
27 28
28//#if EMU_PLATFORM == PLATFORM_LINUX 29//#if EMU_PLATFORM == PLATFORM_LINUX
@@ -43,6 +44,10 @@ int __cdecl main(int argc, char **argv) {
43 44
44 std::string program_dir = File::GetCurrentDir(); 45 std::string program_dir = File::GetCurrentDir();
45 46
47 LogManager::Init();
48
49 NOTICE_LOG(ARM11, "Test\n");
50
46 //EmuWindow_GLFW* emu_window = new EmuWindow_GLFW; 51 //EmuWindow_GLFW* emu_window = new EmuWindow_GLFW;
47 52
48 //if (E_OK != core::Init(emu_window)) { 53 //if (E_OK != core::Init(emu_window)) {