mirror of
				https://git.suyu.dev/suyu/suyu
				synced 2025-11-04 00:49:02 -06:00 
			
		
		
		
	qt: reset progress bar after shader compilation
This commit is contained in:
		@@ -147,6 +147,10 @@ void LoadingScreen::OnLoadProgress(VideoCore::LoadCallbackStage stage, std::size
 | 
				
			|||||||
        ui->progress_bar->setMaximum(static_cast<int>(total));
 | 
					        ui->progress_bar->setMaximum(static_cast<int>(total));
 | 
				
			||||||
        previous_total = total;
 | 
					        previous_total = total;
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
 | 
					    // Reset the progress bar ranges if compilation is done
 | 
				
			||||||
 | 
					    if (stage == VideoCore::LoadCallbackStage::Complete) {
 | 
				
			||||||
 | 
					        ui->progress_bar->setRange(0, 0);
 | 
				
			||||||
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    QString estimate;
 | 
					    QString estimate;
 | 
				
			||||||
    // If theres a drastic slowdown in the rate, then display an estimate
 | 
					    // If theres a drastic slowdown in the rate, then display an estimate
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user