mirror of
				https://github.com/PabloMK7/citra.git
				synced 2025-10-30 21:30:04 +00:00 
			
		
		
		
	Qt: Don't show fractional figures in the status bar
They're not very important and this makes the display changes less often, making it less distracting.
This commit is contained in:
		
							parent
							
								
									3b4e400333
								
							
						
					
					
						commit
						008c709dbf
					
				
					 1 changed files with 2 additions and 2 deletions
				
			
		|  | @ -627,8 +627,8 @@ void GMainWindow::UpdateStatusBar() { | ||||||
| 
 | 
 | ||||||
|     auto results = Core::System::GetInstance().GetAndResetPerfStats(); |     auto results = Core::System::GetInstance().GetAndResetPerfStats(); | ||||||
| 
 | 
 | ||||||
|     emu_speed_label->setText(tr("Speed: %1%").arg(results.emulation_speed * 100.0, 0, 'f', 2)); |     emu_speed_label->setText(tr("Speed: %1%").arg(results.emulation_speed * 100.0, 0, 'f', 0)); | ||||||
|     game_fps_label->setText(tr("Game: %1 FPS").arg(results.game_fps, 0, 'f', 1)); |     game_fps_label->setText(tr("Game: %1 FPS").arg(results.game_fps, 0, 'f', 0)); | ||||||
|     emu_frametime_label->setText(tr("Frame: %1 ms").arg(results.frametime * 1000.0, 0, 'f', 2)); |     emu_frametime_label->setText(tr("Frame: %1 ms").arg(results.frametime * 1000.0, 0, 'f', 2)); | ||||||
| 
 | 
 | ||||||
|     emu_speed_label->setVisible(true); |     emu_speed_label->setVisible(true); | ||||||
|  |  | ||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue