mirror of
				https://git.zaroz.cloud/nintendo-back-up/yuzu/yuzu-mainline.git
				synced 2025-03-21 01:53:15 +00:00 
			
		
		
		
	IPC: Corrected some command headers in the IPC Controller interface.
This commit is contained in:
		
							parent
							
								
									166286e976
								
							
						
					
					
						commit
						ad965501d0
					
				@ -15,14 +15,13 @@ void Controller::ConvertSessionToDomain(Kernel::HLERequestContext& ctx) {
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
    IPC::RequestBuilder rb{ctx, 3};
 | 
					    IPC::RequestBuilder rb{ctx, 3};
 | 
				
			||||||
    rb.Push(RESULT_SUCCESS);
 | 
					    rb.Push(RESULT_SUCCESS);
 | 
				
			||||||
    rb.Skip(1, true);
 | 
					    rb.Push(static_cast<u32>(domain->request_handlers.size()));
 | 
				
			||||||
    rb.Push<u32>(static_cast<u32>(domain->request_handlers.size()));
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
    LOG_DEBUG(Service, "called, domain=%d", domain->GetObjectId());
 | 
					    LOG_DEBUG(Service, "called, domain=%d", domain->GetObjectId());
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
void Controller::DuplicateSession(Kernel::HLERequestContext& ctx) {
 | 
					void Controller::DuplicateSession(Kernel::HLERequestContext& ctx) {
 | 
				
			||||||
    IPC::RequestBuilder rb{ctx, 1, 0, 1};
 | 
					    IPC::RequestBuilder rb{ctx, 2, 0, 1};
 | 
				
			||||||
    rb.Push(RESULT_SUCCESS);
 | 
					    rb.Push(RESULT_SUCCESS);
 | 
				
			||||||
    rb.PushMoveObjects(ctx.ServerSession());
 | 
					    rb.PushMoveObjects(ctx.ServerSession());
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@ -32,7 +31,6 @@ void Controller::DuplicateSession(Kernel::HLERequestContext& ctx) {
 | 
				
			|||||||
void Controller::QueryPointerBufferSize(Kernel::HLERequestContext& ctx) {
 | 
					void Controller::QueryPointerBufferSize(Kernel::HLERequestContext& ctx) {
 | 
				
			||||||
    IPC::RequestBuilder rb{ctx, 3};
 | 
					    IPC::RequestBuilder rb{ctx, 3};
 | 
				
			||||||
    rb.Push(RESULT_SUCCESS);
 | 
					    rb.Push(RESULT_SUCCESS);
 | 
				
			||||||
    rb.Skip(1, true);
 | 
					 | 
				
			||||||
    rb.Push<u32>(0x500);
 | 
					    rb.Push<u32>(0x500);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    LOG_WARNING(Service, "(STUBBED) called");
 | 
					    LOG_WARNING(Service, "(STUBBED) called");
 | 
				
			||||||
 | 
				
			|||||||
		Loading…
	
		Reference in New Issue
	
	Block a user