[UI] Profiler shutdown goes before window shutdown

This commit is contained in:
DrChat 2017-12-17 14:43:52 -06:00
parent c7859da997
commit 81cd532ff8
1 changed files with 1 additions and 1 deletions

View File

@ -232,10 +232,10 @@ int xenia_main(const std::vector<std::wstring>& args) {
debug_window.reset();
emulator.reset();
emulator_window.reset();
Profiler::Dump();
Profiler::Shutdown();
emulator_window.reset();
return 0;
}