mirror of
				https://git.zaroz.cloud/nintendo-back-up/yuzu/yuzu.git
				synced 2025-05-12 00:45:25 +00:00 
			
		
		
		
	Prevent crash from uninitialized telemetry
This commit is contained in:
		
							parent
							
								
									37041ea12c
								
							
						
					
					
						commit
						222ba939f2
					
				| @ -347,8 +347,6 @@ bool GMainWindow::LoadROM(const QString& filename) { | |||||||
| 
 | 
 | ||||||
|     const Core::System::ResultStatus result{system.Load(render_window, filename.toStdString())}; |     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) { |     if (result != Core::System::ResultStatus::Success) { | ||||||
|         switch (result) { |         switch (result) { | ||||||
|         case Core::System::ResultStatus::ErrorGetLoader: |         case Core::System::ResultStatus::ErrorGetLoader: | ||||||
| @ -409,6 +407,7 @@ bool GMainWindow::LoadROM(const QString& filename) { | |||||||
|         } |         } | ||||||
|         return false; |         return false; | ||||||
|     } |     } | ||||||
|  |     Core::Telemetry().AddField(Telemetry::FieldType::App, "Frontend", "Qt"); | ||||||
|     return true; |     return true; | ||||||
| } | } | ||||||
| 
 | 
 | ||||||
|  | |||||||
		Loading…
	
		Reference in New Issue
	
	Block a user
	 James Rowe
						James Rowe