mirror of
https://git.suyu.dev/suyu/suyu
synced 2024-11-01 21:07:52 +00:00
Prevent crash from uninitialized telemetry
This commit is contained in:
parent
37041ea12c
commit
222ba939f2
1 changed files with 1 additions and 2 deletions
|
@ -347,8 +347,6 @@ bool GMainWindow::LoadROM(const QString& filename) {
|
|||
|
||||
const Core::System::ResultStatus result{system.Load(render_window, filename.toStdString())};
|
||||
|
||||
Core::Telemetry().AddField(Telemetry::FieldType::App, "Frontend", "Qt");
|
||||
|
||||
if (result != Core::System::ResultStatus::Success) {
|
||||
switch (result) {
|
||||
case Core::System::ResultStatus::ErrorGetLoader:
|
||||
|
@ -409,6 +407,7 @@ bool GMainWindow::LoadROM(const QString& filename) {
|
|||
}
|
||||
return false;
|
||||
}
|
||||
Core::Telemetry().AddField(Telemetry::FieldType::App, "Frontend", "Qt");
|
||||
return true;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue