diff options
| author | 2016-03-09 22:20:08 +0100 | |
|---|---|---|
| committer | 2016-03-09 22:20:08 +0100 | |
| commit | e649f5d98d8cd90401fa05938b1c68fdf4ea453f (patch) | |
| tree | 0fbe821c7848c625d296619e4eaab6ea7472a937 /src/core/system.cpp | |
| parent | Merge pull request #1474 from lioncash/renderer (diff) | |
| download | yuzu-e649f5d98d8cd90401fa05938b1c68fdf4ea453f.tar.gz yuzu-e649f5d98d8cd90401fa05938b1c68fdf4ea453f.tar.xz yuzu-e649f5d98d8cd90401fa05938b1c68fdf4ea453f.zip | |
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) { | |||
| 29 | } | 29 | } |
| 30 | AudioCore::Init(); | 30 | AudioCore::Init(); |
| 31 | GDBStub::Init(); | 31 | GDBStub::Init(); |
| 32 | |||
| 33 | return Result::Success; | ||
| 32 | } | 34 | } |
| 33 | 35 | ||
| 34 | void Shutdown() { | 36 | void Shutdown() { |