mirror of
				https://github.com/PabloMK7/citra.git
				synced 2025-10-31 13:50:03 +00:00 
			
		
		
		
	Merge pull request #4647 from FearlessTobi/fix-weird-bug
citra_qt/main: make SPEED_LIMIT_STEP static constexpr
This commit is contained in:
		
						commit
						b0a4220711
					
				
					 1 changed files with 3 additions and 1 deletions
				
			
		|  | @ -407,7 +407,9 @@ void GMainWindow::InitializeHotkeys() { | |||
|                 Settings::values.use_frame_limit = !Settings::values.use_frame_limit; | ||||
|                 UpdateStatusBar(); | ||||
|             }); | ||||
|     constexpr u16 SPEED_LIMIT_STEP = 5; | ||||
|     // We use "static" here in order to avoid capturing by lambda due to a MSVC bug, which makes the
 | ||||
|     // variable hold a garbage value after this function exits
 | ||||
|     static constexpr u16 SPEED_LIMIT_STEP = 5; | ||||
|     connect(hotkey_registry.GetHotkey("Main Window", "Increase Speed Limit", this), | ||||
|             &QShortcut::activated, this, [&] { | ||||
|                 if (Settings::values.frame_limit < 9999 - SPEED_LIMIT_STEP) { | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue