Ver Fonte

Merge pull request #1482 from LittleWhite-tb/mac-opengl-check

Fix missing return
Mathew Maidment há 10 anos atrás
pai
commit
d622a2235b
1 ficheiros alterados com 2 adições e 0 exclusões
  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() {