mirror of
https://github.com/N64Recomp/N64ModernRuntime.git
synced 2026-05-10 19:01:53 +00:00
Fix manifest flag not getting retained when building container type
This commit is contained in:
parent
261b196e4d
commit
2d57d25121
1 changed files with 5 additions and 1 deletions
|
|
@ -552,7 +552,11 @@ bool recomp::mods::ModContext::register_container_type(const std::string& extens
|
|||
}
|
||||
|
||||
// Register the container type.
|
||||
container_types.emplace(true_extension, container_content_types);
|
||||
container_types.emplace(true_extension,
|
||||
ModContainerType {
|
||||
.supported_content_types = container_content_types,
|
||||
.requires_manifest = requires_manifest
|
||||
});
|
||||
|
||||
return true;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue