Fix null pointer deref.

This commit is contained in:
Nicolae-Andrei Cociorba 2019-10-18 14:12:12 +00:00
parent dc5eedef71
commit 20521da259

View File

@ -240,7 +240,8 @@ struct System::Impl {
}
void Shutdown() {
// Log last frame performance stats
// Log last frame performance stats if game was loded
if (perf_stats) {
const auto perf_results = GetAndResetPerfStats();
telemetry_session->AddField(Telemetry::FieldType::Performance, "Shutdown_EmulationSpeed",
perf_results.emulation_speed * 100.0);
@ -250,6 +251,7 @@ struct System::Impl {
perf_results.frametime * 1000.0);
telemetry_session->AddField(Telemetry::FieldType::Performance, "Mean_Frametime_MS",
perf_stats->GetMeanFrametime());
}
lm_manager.Flush();