mirror of
				https://github.com/PabloMK7/citra.git
				synced 2025-10-31 05:40:04 +00:00 
			
		
		
		
	Merge pull request #3880 from wwylele/title-fix
citra_qt: only update title from game after ensuring loaded successfully
This commit is contained in:
		
						commit
						0a34054a16
					
				
					 1 changed files with 5 additions and 4 deletions
				
			
		|  | @ -606,10 +606,6 @@ bool GMainWindow::LoadROM(const QString& filename) { | ||||||
|     Core::System& system{Core::System::GetInstance()}; |     Core::System& system{Core::System::GetInstance()}; | ||||||
| 
 | 
 | ||||||
|     const Core::System::ResultStatus result{system.Load(render_window, filename.toStdString())}; |     const Core::System::ResultStatus result{system.Load(render_window, filename.toStdString())}; | ||||||
|     std::string title; |  | ||||||
|     system.GetAppLoader().ReadTitle(title); |  | ||||||
|     game_title = QString::fromStdString(title); |  | ||||||
|     SetupUIStrings(); |  | ||||||
| 
 | 
 | ||||||
|     if (result != Core::System::ResultStatus::Success) { |     if (result != Core::System::ResultStatus::Success) { | ||||||
|         switch (result) { |         switch (result) { | ||||||
|  | @ -666,6 +662,11 @@ bool GMainWindow::LoadROM(const QString& filename) { | ||||||
|         return false; |         return false; | ||||||
|     } |     } | ||||||
| 
 | 
 | ||||||
|  |     std::string title; | ||||||
|  |     system.GetAppLoader().ReadTitle(title); | ||||||
|  |     game_title = QString::fromStdString(title); | ||||||
|  |     SetupUIStrings(); | ||||||
|  | 
 | ||||||
|     Core::Telemetry().AddField(Telemetry::FieldType::App, "Frontend", "Qt"); |     Core::Telemetry().AddField(Telemetry::FieldType::App, "Frontend", "Qt"); | ||||||
|     return true; |     return true; | ||||||
| } | } | ||||||
|  |  | ||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue