diff options
| author | 2013-09-18 22:36:07 -0400 | |
|---|---|---|
| committer | 2013-09-18 22:36:07 -0400 | |
| commit | b2c5690413ac6a1bdbed514bff5606167a95c904 (patch) | |
| tree | cec6efde9dc6cd38aa55412e2d47d0f1b818ce9b | |
| parent | added core initialization to app entry point (diff) | |
| download | yuzu-b2c5690413ac6a1bdbed514bff5606167a95c904.tar.gz yuzu-b2c5690413ac6a1bdbed514bff5606167a95c904.tar.xz yuzu-b2c5690413ac6a1bdbed514bff5606167a95c904.zip | |
added log msg to core
| -rw-r--r-- | src/core/src/core.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
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() { | |||
| 42 | /// Initialize the core | 42 | /// Initialize the core |
| 43 | int Init(EmuWindow* emu_window) { | 43 | int Init(EmuWindow* emu_window) { |
| 44 | Memory::Init(); | 44 | Memory::Init(); |
| 45 | |||
| 46 | NOTICE_LOG(MASTER_LOG, "Core initialized OK"); | ||
| 45 | return 0; | 47 | return 0; |
| 46 | } | 48 | } |
| 47 | 49 | ||