mirror of
https://github.com/xenia-project/xenia.git
synced 2026-04-04 14:17:24 +00:00
Fix the StfsContainerEntry not being initialized in StfsContainerFile
This commit is contained in:
parent
9e82ccb8f0
commit
f1829a5784
1 changed files with 1 additions and 1 deletions
|
|
@ -18,7 +18,7 @@ namespace vfs {
|
|||
|
||||
StfsContainerFile::StfsContainerFile(uint32_t file_access,
|
||||
StfsContainerEntry* entry)
|
||||
: File(file_access, entry) {}
|
||||
: File(file_access, entry), entry_(entry) {}
|
||||
|
||||
StfsContainerFile::~StfsContainerFile() = default;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue