mirror of
https://github.com/citra-emu/citra.git
synced 2024-11-15 10:10:04 +00:00
Don't crash when getting perf stats
This commit is contained in:
parent
5b6ee9a6ab
commit
714a85119d
@ -296,7 +296,8 @@ void System::PrepareReschedule() {
|
||||
}
|
||||
|
||||
PerfStats::Results System::GetAndResetPerfStats() {
|
||||
return perf_stats->GetAndResetStats(timing->GetGlobalTimeUs());
|
||||
return (perf_stats && timing) ? perf_stats->GetAndResetStats(timing->GetGlobalTimeUs())
|
||||
: PerfStats::Results{};
|
||||
}
|
||||
|
||||
void System::Reschedule() {
|
||||
|
Loading…
Reference in New Issue
Block a user