[nostalgia] Make default constant refresh setting false

This commit is contained in:
Gary Talent 2022-03-17 03:42:39 -05:00
parent 5c783da3fc
commit 38cb3fc962

View File

@ -77,13 +77,13 @@ class Context {
const char *appName = "Nostalgia"; const char *appName = "Nostalgia";
#ifndef OX_BARE_METAL #ifndef OX_BARE_METAL
AssetManager assetManager; AssetManager assetManager;
int uninterruptedRefreshes = 0; int uninterruptedRefreshes = 3;
ox::UniquePtr<BaseClipboardObject> clipboard; ox::UniquePtr<BaseClipboardObject> clipboard;
#endif #endif
protected: protected:
#ifndef OX_BARE_METAL #ifndef OX_BARE_METAL
// sets screen refresh to constant instead of only on event // sets screen refresh to constant instead of only on event
bool constantRefresh = false; bool constantRefresh = true;
#endif #endif
void *m_customData = nullptr; void *m_customData = nullptr;