diff options
author | Mathew Maidment <mathew1800@gmail.com> | 2016-03-09 16:24:37 -0500 |
---|---|---|
committer | Mathew Maidment <mathew1800@gmail.com> | 2016-03-09 16:24:37 -0500 |
commit | d622a2235b6f479b5aeb732874db696bda4105da (patch) | |
tree | 0fbe821c7848c625d296619e4eaab6ea7472a937 /src/core/system.cpp | |
parent | 4a2d1571bc16e4705c35bc3473985c5e7c8e7603 (diff) | |
parent | e649f5d98d8cd90401fa05938b1c68fdf4ea453f (diff) |
Merge pull request #1482 from LittleWhite-tb/mac-opengl-check
Fix missing return
Diffstat (limited to 'src/core/system.cpp')
-rw-r--r-- | src/core/system.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/core/system.cpp b/src/core/system.cpp index 1e3b2783c..4a4757af3 100644 --- a/src/core/system.cpp +++ b/src/core/system.cpp @@ -29,6 +29,8 @@ Result Init(EmuWindow* emu_window) { } AudioCore::Init(); GDBStub::Init(); + + return Result::Success; } void Shutdown() { |