From b2c5690413ac6a1bdbed514bff5606167a95c904 Mon Sep 17 00:00:00 2001 From: ShizZy Date: Wed, 18 Sep 2013 22:36:07 -0400 Subject: [PATCH] added log msg to core --- src/core/src/core.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/core/src/core.cpp b/src/core/src/core.cpp index 873c687b7..7f6bb2b0e 100644 --- a/src/core/src/core.cpp +++ b/src/core/src/core.cpp @@ -42,6 +42,8 @@ void Stop() { /// Initialize the core int Init(EmuWindow* emu_window) { Memory::Init(); + + NOTICE_LOG(MASTER_LOG, "Core initialized OK"); return 0; }