mirror of
				https://github.com/PabloMK7/citra.git
				synced 2025-10-30 21:30:04 +00:00 
			
		
		
		
	qt: Fix loading screen metadata retention when title has no metadata. (#7215)
This commit is contained in:
		
							parent
							
								
									0842ee6d7b
								
							
						
					
					
						commit
						9da78f6126
					
				
					 1 changed files with 9 additions and 2 deletions
				
			
		|  | @ -13,6 +13,7 @@ | |||
| #include <QString> | ||||
| #include <QStyleOption> | ||||
| #include <QTime> | ||||
| #include <fmt/format.h> | ||||
| #include "citra_qt/loading_screen.h" | ||||
| #include "common/logging/log.h" | ||||
| #include "core/loader/loader.h" | ||||
|  | @ -129,11 +130,17 @@ void LoadingScreen::Prepare(Loader::AppLoader& loader) { | |||
|     if (loader.ReadIcon(buffer) == Loader::ResultStatus::Success) { | ||||
|         QPixmap icon = GetQPixmapFromSMDH(buffer); | ||||
|         ui->icon->setPixmap(icon); | ||||
|     } else { | ||||
|         ui->icon->clear(); | ||||
|     } | ||||
|     std::string title; | ||||
|     if (loader.ReadTitle(title) == Loader::ResultStatus::Success) { | ||||
|         ui->title->setText(tr("Now Loading\n%1").arg(QString::fromStdString(title))); | ||||
|     if (loader.ReadTitle(title) != Loader::ResultStatus::Success) { | ||||
|         u64 program_id; | ||||
|         if (loader.ReadProgramId(program_id) == Loader::ResultStatus::Success) { | ||||
|             title = fmt::format("{:016x}", program_id); | ||||
|         } | ||||
|     } | ||||
|     ui->title->setText(tr("Now Loading\n%1").arg(QString::fromStdString(title))); | ||||
|     eta_shown = false; | ||||
|     OnLoadProgress(VideoCore::LoadCallbackStage::Prepare, 0, 0); | ||||
| } | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue