aboutsummaryrefslogtreecommitdiff
path: root/src/core/system.cpp
diff options
context:
space:
mode:
authorLittleWhite <lw.demoscene@googlemail.com>2016-03-09 22:20:08 +0100
committerLittleWhite <lw.demoscene@googlemail.com>2016-03-09 22:20:08 +0100
commite649f5d98d8cd90401fa05938b1c68fdf4ea453f (patch)
tree0fbe821c7848c625d296619e4eaab6ea7472a937 /src/core/system.cpp
parent4a2d1571bc16e4705c35bc3473985c5e7c8e7603 (diff)
Fix missing return
Diffstat (limited to 'src/core/system.cpp')
-rw-r--r--src/core/system.cpp2
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() {