[nostalgia/tools/pack] Fix build

This commit is contained in:
Gary Talent 2023-03-11 18:18:41 -06:00
parent ae9272841f
commit 986ee3d7b0
2 changed files with 1 additions and 2 deletions

View File

@ -46,7 +46,7 @@ static ox::Result<ox::Buffer> readFileBuff(ox::CRStringView path) noexcept {
}
static ox::Error generateTypes(ox::TypeStore *ts) noexcept {
for (const auto mod : *foundation::modules()) {
for (const auto mod : foundation::modules()) {
for (auto gen : mod->types()) {
oxReturnError(gen(ts));
}

View File

@ -6,7 +6,6 @@ add_library(
target_link_libraries(
NostalgiaPack PUBLIC
NostalgiaCore-Headless
NostalgiaFoundation
OxPreloader
)