mirror of
				https://github.com/PabloMK7/citra.git
				synced 2025-10-31 13:50:03 +00:00 
			
		
		
		
	common/core: Silence initialization order warnings
This commit is contained in:
		
							parent
							
								
									9699194b54
								
							
						
					
					
						commit
						c31f932afe
					
				
					 5 changed files with 7 additions and 7 deletions
				
			
		|  | @ -190,7 +190,7 @@ MappedBuffer& HLERequestContext::GetMappedBuffer(u32 id_from_cmdbuf) { | |||
| } | ||||
| 
 | ||||
| MappedBuffer::MappedBuffer(const Process& process, u32 descriptor, VAddr address, u32 id) | ||||
|     : process(&process), address(address), id(id) { | ||||
|     : id(id), address(address), process(&process) { | ||||
|     IPC::MappedBufferDescInfo desc{descriptor}; | ||||
|     size = desc.size; | ||||
|     perms = desc.perms; | ||||
|  |  | |||
|  | @ -67,7 +67,7 @@ enum class DirectoryCommand : u32 { | |||
| }; | ||||
| 
 | ||||
| File::File(std::unique_ptr<FileSys::FileBackend>&& backend, const FileSys::Path& path) | ||||
|     : path(path), priority(0), backend(std::move(backend)), ServiceFramework("", 1) { | ||||
|     : ServiceFramework("", 1), path(path), priority(0), backend(std::move(backend)) { | ||||
|     static const FunctionInfo functions[] = { | ||||
|         {0x080200C2, &File::Read, "Read"}, | ||||
|         {0x08030102, &File::Write, "Write"}, | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue