mirror of
				https://git.zaroz.cloud/nintendo-back-up/yuzu/yuzu.git
				synced 2025-05-12 00:45:25 +00:00 
			
		
		
		
	removed the possibly uneeded cast on values.gdbstub_port
as far as i could tell this cast is unneeded because [GDBStub::SetServerPort](https://github.com/citra-emu/citra/blob/master/src/core/gdbstub/gdbstub.cpp#L897) takes a u16 and [values.gdbstub_port](https://github.com/citra-emu/citra/blob/master/src/core/settings.h#L116) is already a u16
This commit is contained in:
		
							parent
							
								
									d0bf7df5ba
								
							
						
					
					
						commit
						a0874d9b64
					
				| @ -15,7 +15,7 @@ Values values = {}; | |||||||
| 
 | 
 | ||||||
| void Apply() { | void Apply() { | ||||||
| 
 | 
 | ||||||
|     GDBStub::SetServerPort(static_cast<u32>(values.gdbstub_port)); |     GDBStub::SetServerPort(values.gdbstub_port); | ||||||
|     GDBStub::ToggleServer(values.use_gdbstub); |     GDBStub::ToggleServer(values.use_gdbstub); | ||||||
| 
 | 
 | ||||||
|     VideoCore::g_hw_renderer_enabled = values.use_hw_renderer; |     VideoCore::g_hw_renderer_enabled = values.use_hw_renderer; | ||||||
|  | |||||||
		Loading…
	
		Reference in New Issue
	
	Block a user
	 noah the goodra
						noah the goodra