mirror of
				https://github.com/PabloMK7/citra.git
				synced 2025-10-30 21:30:04 +00:00 
			
		
		
		
	hle: Fix session limits for srv: and soc:U. (#7160)
This commit is contained in:
		
							parent
							
								
									3b31720c4d
								
							
						
					
					
						commit
						88cc6acb4d
					
				
					 2 changed files with 2 additions and 2 deletions
				
			
		|  | @ -286,7 +286,7 @@ void SRV::RegisterService(Kernel::HLERequestContext& ctx) { | |||
|     rb.PushMoveObjects(port.Unwrap()); | ||||
| } | ||||
| 
 | ||||
| SRV::SRV(Core::System& system) : ServiceFramework("srv:", 4), system(system) { | ||||
| SRV::SRV(Core::System& system) : ServiceFramework("srv:", 64), system(system) { | ||||
|     static const FunctionInfo functions[] = { | ||||
|         // clang-format off
 | ||||
|         {0x0001, &SRV::RegisterClient, "RegisterClient"}, | ||||
|  |  | |||
|  | @ -1790,7 +1790,7 @@ void SOC_U::GetNameInfoImpl(Kernel::HLERequestContext& ctx) { | |||
|     rb.PushStaticBuffer(std::move(serv), 1); | ||||
| } | ||||
| 
 | ||||
| SOC_U::SOC_U() : ServiceFramework("soc:U") { | ||||
| SOC_U::SOC_U() : ServiceFramework("soc:U", 18) { | ||||
|     static const FunctionInfo functions[] = { | ||||
|         // clang-format off
 | ||||
|         {0x0001, &SOC_U::InitializeSockets, "InitializeSockets"}, | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue