From 38cb3fc962948e2a6b197044264c4c8fea618da3 Mon Sep 17 00:00:00 2001 From: Gary Talent Date: Thu, 17 Mar 2022 03:42:39 -0500 Subject: [PATCH] [nostalgia] Make default constant refresh setting false --- src/nostalgia/core/context.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/nostalgia/core/context.hpp b/src/nostalgia/core/context.hpp index 279ecff9..ba4ed69d 100644 --- a/src/nostalgia/core/context.hpp +++ b/src/nostalgia/core/context.hpp @@ -77,13 +77,13 @@ class Context { const char *appName = "Nostalgia"; #ifndef OX_BARE_METAL AssetManager assetManager; - int uninterruptedRefreshes = 0; + int uninterruptedRefreshes = 3; ox::UniquePtr clipboard; #endif protected: #ifndef OX_BARE_METAL // sets screen refresh to constant instead of only on event - bool constantRefresh = false; + bool constantRefresh = true; #endif void *m_customData = nullptr;