mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2025-07-20 22:15:46 +00:00
control_metadata: Remove unnecessary reference to base file
This commit is contained in:
parent
0c55578a65
commit
b16c3dc725
2 changed files with 1 additions and 2 deletions
|
@ -16,7 +16,7 @@ std::string LanguageEntry::GetDeveloperName() const {
|
|||
return Common::StringFromFixedZeroTerminatedBuffer(developer_name.data(), 0x100);
|
||||
}
|
||||
|
||||
NACP::NACP(VirtualFile file_) : file(std::move(file_)), raw(std::make_unique<RawNACP>()) {
|
||||
NACP::NACP(VirtualFile file) : raw(std::make_unique<RawNACP>()) {
|
||||
file->ReadObject(raw.get());
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue