diff options
author | bunnei <bunneidev@gmail.com> | 2016-03-08 23:12:04 -0500 |
---|---|---|
committer | bunnei <bunneidev@gmail.com> | 2016-03-08 23:12:04 -0500 |
commit | 8530a2d7df7f9546e3d4e9be2cec633307a28c23 (patch) | |
tree | 9bcf963cc1a7c8c5700afe926fd43c08b2aaff96 /src/core/core.cpp | |
parent | 58c336b67109e89b3d47e2873e8271e7291a59d0 (diff) | |
parent | 4be68dddfbdc7065139351e6e39b5fa97844264a (diff) |
Merge pull request #1344 from LittleWhite-tb/error-output
Output errors in GUI
Diffstat (limited to 'src/core/core.cpp')
-rw-r--r-- | src/core/core.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/core/core.cpp b/src/core/core.cpp index 453c7162d..84d6c392e 100644 --- a/src/core/core.cpp +++ b/src/core/core.cpp @@ -73,12 +73,11 @@ void Stop() { } /// Initialize the core -int Init() { +void Init() { g_sys_core = Common::make_unique<ARM_DynCom>(USER32MODE); g_app_core = Common::make_unique<ARM_DynCom>(USER32MODE); LOG_DEBUG(Core, "Initialized OK"); - return 0; } void Shutdown() { |