From 4803cca334377a63882a604c6b1254b93f750536 Mon Sep 17 00:00:00 2001 From: Gary Talent Date: Sat, 8 Mar 2025 22:28:29 -0600 Subject: [PATCH] [nostalgia/player] Cleanup --- src/nostalgia/player/app.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) 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); }