diff options
author | Mathew Maidment <mathew1800@gmail.com> | 2016-03-09 22:24:37 +0100 |
---|---|---|
committer | Mathew Maidment <mathew1800@gmail.com> | 2016-03-09 22:24:37 +0100 |
commit | d622a2235b6f479b5aeb732874db696bda4105da (patch) | |
tree | 0fbe821c7848c625d296619e4eaab6ea7472a937 /src | |
parent | Merge pull request #1474 from lioncash/renderer (diff) | |
parent | Fix missing return (diff) | |
download | yuzu-d622a2235b6f479b5aeb732874db696bda4105da.tar yuzu-d622a2235b6f479b5aeb732874db696bda4105da.tar.gz yuzu-d622a2235b6f479b5aeb732874db696bda4105da.tar.bz2 yuzu-d622a2235b6f479b5aeb732874db696bda4105da.tar.lz yuzu-d622a2235b6f479b5aeb732874db696bda4105da.tar.xz yuzu-d622a2235b6f479b5aeb732874db696bda4105da.tar.zst yuzu-d622a2235b6f479b5aeb732874db696bda4105da.zip |
Diffstat (limited to 'src')
-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() { |