소스 검색

Fix missing return

LittleWhite 10 년 전
부모
커밋
e649f5d98d
1개의 변경된 파일2개의 추가작업 그리고 0개의 파일을 삭제
  1. 2 0
      src/core/system.cpp

+ 2 - 0
src/core/system.cpp

@@ -29,6 +29,8 @@ Result Init(EmuWindow* emu_window) {
     }
     AudioCore::Init();
     GDBStub::Init();
+
+    return Result::Success;
 }
 
 void Shutdown() {