1
0
mirror of https://github.com/citra-emu/citra.git synced 2025-04-04 03:51:08 +00:00

Fix missing return

This commit is contained in:
LittleWhite 2016-03-09 22:20:08 +01:00
parent 4a2d1571bc
commit e649f5d98d

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