[nostalgia/studio] Set constant refrest to false

This commit is contained in:
Gary Talent 2022-03-17 04:06:30 -05:00
parent 0a9bc78a8d
commit a6f9dfaa2e

View File

@ -34,6 +34,7 @@ static ox::Error run(ox::UniquePtr<ox::FileSystem> fs) noexcept {
oxRequireM(ctx, core::init(std::move(fs), "NostalgiaStudio"));
core::setWindowTitle(ctx.get(), "Nostalgia Studio");
core::setEventHandler(ctx.get(), eventHandler);
core::setConstantRefresh(ctx.get(), false);
studio::StudioContext studioCtx;
core::setApplicationData(ctx.get(), &studioCtx);
StudioUI ui(ctx.get());