mirror of
				https://github.com/PabloMK7/citra.git
				synced 2025-10-31 05:40:04 +00:00 
			
		
		
		
	HLE: specify that the command buffer is an array of u32_le
This commit is contained in:
		
							parent
							
								
									b0f4390247
								
							
						
					
					
						commit
						42ab8d9d0b
					
				
					 1 changed files with 1 additions and 1 deletions
				
			
		|  | @ -39,7 +39,7 @@ SharedPtr<Event> HLERequestContext::SleepClientThread(SharedPtr<Thread> thread, | ||||||
|         // We must copy the entire command buffer *plus* the entire static buffers area, since
 |         // We must copy the entire command buffer *plus* the entire static buffers area, since
 | ||||||
|         // the translation might need to read from it in order to retrieve the StaticBuffer
 |         // the translation might need to read from it in order to retrieve the StaticBuffer
 | ||||||
|         // target addresses.
 |         // target addresses.
 | ||||||
|         std::array<u32, IPC::COMMAND_BUFFER_LENGTH + 2 * IPC::MAX_STATIC_BUFFERS> cmd_buff; |         std::array<u32_le, IPC::COMMAND_BUFFER_LENGTH + 2 * IPC::MAX_STATIC_BUFFERS> cmd_buff; | ||||||
|         Memory::ReadBlock(*process, thread->GetCommandBufferAddress(), cmd_buff.data(), |         Memory::ReadBlock(*process, thread->GetCommandBufferAddress(), cmd_buff.data(), | ||||||
|                           cmd_buff.size() * sizeof(u32)); |                           cmd_buff.size() * sizeof(u32)); | ||||||
|         context.WriteToOutgoingCommandBuffer(cmd_buff.data(), *process, Kernel::g_handle_table); |         context.WriteToOutgoingCommandBuffer(cmd_buff.data(), *process, Kernel::g_handle_table); | ||||||
|  |  | ||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue