diff --git a/src/nostalgia/player/app.cpp b/src/nostalgia/player/app.cpp index 2b29d7eb..f658004b 100644 --- a/src/nostalgia/player/app.cpp +++ b/src/nostalgia/player/app.cpp @@ -134,7 +134,6 @@ ox::Error run( return ox::Error{1, "Please provide path to project directory or OxFS file."}; } auto const path = args[1]; - OX_REQUIRE_M(fs, keel::loadRomFs(path)); - OX_REQUIRE_M(tctx, turbine::init(std::move(fs), project)); + OX_REQUIRE_M(tctx, turbine::init(path, project)); return runTileSheetSetTest(*tctx); }