mirror of
				https://github.com/PabloMK7/citra.git
				synced 2025-10-31 13:50:03 +00:00 
			
		
		
		
	RomFSFile: Default constructor
This commit is contained in:
		
							parent
							
								
									b1f8c2fe67
								
							
						
					
					
						commit
						123c0886e6
					
				
					 2 changed files with 3 additions and 5 deletions
				
			
		|  | @ -53,8 +53,6 @@ static bool MatchName(const u8* buffer, u32 name_length, const std::u16string& n | |||
|     return name == std::u16string(name_buffer.begin(), name_buffer.end()); | ||||
| } | ||||
| 
 | ||||
| RomFSFile::RomFSFile() : data(nullptr), length(0) {} | ||||
| 
 | ||||
| RomFSFile::RomFSFile(const u8* data, u64 length) : data(data), length(length) {} | ||||
| 
 | ||||
| const u8* RomFSFile::Data() const { | ||||
|  |  | |||
|  | @ -12,14 +12,14 @@ namespace RomFS { | |||
| 
 | ||||
| class RomFSFile { | ||||
| public: | ||||
|     RomFSFile(); | ||||
|     RomFSFile() = default; | ||||
|     RomFSFile(const u8* data, u64 length); | ||||
|     const u8* Data() const; | ||||
|     u64 Length() const; | ||||
| 
 | ||||
| private: | ||||
|     const u8* data; | ||||
|     u64 length; | ||||
|     const u8* data = nullptr; | ||||
|     u64 length = 0; | ||||
| }; | ||||
| 
 | ||||
| /**
 | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue