Remove unnecessary new lines, changed Deinit to Shutdown

This commit is contained in:
polaris- 2015-10-11 20:07:58 -04:00
parent 42928659e8
commit 2b7316a379
5 changed files with 8 additions and 11 deletions

View file

@ -24,13 +24,11 @@ void Init(EmuWindow* emu_window) {
Kernel::Init();
HLE::Init();
VideoCore::Init(emu_window);
GDBStub::Init();
}
void Shutdown() {
GDBStub::Deinit();
GDBStub::Shutdown();
VideoCore::Shutdown();
HLE::Shutdown();
Kernel::Shutdown();