diff options
author | LittleWhite <lw.demoscene@googlemail.com> | 2016-03-09 22:20:08 +0100 |
---|---|---|
committer | LittleWhite <lw.demoscene@googlemail.com> | 2016-03-09 22:20:08 +0100 |
commit | e649f5d98d8cd90401fa05938b1c68fdf4ea453f (patch) | |
tree | 0fbe821c7848c625d296619e4eaab6ea7472a937 /src/core/system.cpp | |
parent | 4a2d1571bc16e4705c35bc3473985c5e7c8e7603 (diff) |
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 1e3b2783c2..4a4757af38 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() { |