[nostalgia/player] Remove old shutdown function use

This commit is contained in:
Gary Talent 2021-07-23 21:53:43 -05:00
parent 32ac497a0e
commit 1dac98fbc7

View File

@ -40,8 +40,6 @@ ox::Error run(ox::FileSystem *fs) noexcept {
oxReturnError(core::initConsole(ctx.get()));
core::puts(ctx.get(), 10, 9, "DOPENESS!!!");
core::setEventHandler(ctx.get(), eventHandler);
oxReturnError(core::run(ctx.get()));
oxReturnError(core::shutdownGfx(ctx.get()));
return OxError(0);
return core::run(ctx.get());
}