[nostalgia/player] Cleanup
All checks were successful
Build / build (push) Successful in 1m29s

This commit is contained in:
Gary Talent 2025-03-08 22:28:29 -06:00
parent 6bd74611cd
commit 4803cca334

View File

@ -134,7 +134,6 @@ ox::Error run(
return ox::Error{1, "Please provide path to project directory or OxFS file."}; return ox::Error{1, "Please provide path to project directory or OxFS file."};
} }
auto const path = args[1]; auto const path = args[1];
OX_REQUIRE_M(fs, keel::loadRomFs(path)); OX_REQUIRE_M(tctx, turbine::init(path, project));
OX_REQUIRE_M(tctx, turbine::init(std::move(fs), project));
return runTileSheetSetTest(*tctx); return runTileSheetSetTest(*tctx);
} }