From a382d94bd56f93cdae0f9e9df769d3c145ba2419 Mon Sep 17 00:00:00 2001 From: Toni Wilen Date: Wed, 24 Aug 2016 19:11:47 +0300 Subject: [PATCH] Built-in PAL/NTSC missing inuse state. --- cfgfile.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/cfgfile.cpp b/cfgfile.cpp index f0c4ac46..930d9db8 100644 --- a/cfgfile.cpp +++ b/cfgfile.cpp @@ -6858,6 +6858,7 @@ void default_prefs (struct uae_prefs *p, bool reset, int type) cr->rate = 50.0; cr->ntsc = 0; cr->locked = false; + cr->inuse = true; _tcscpy (cr->label, _T("PAL")); cr = &p->cr[CHIPSET_REFRESH_NTSC]; cr->index = CHIPSET_REFRESH_NTSC; @@ -6869,6 +6870,7 @@ void default_prefs (struct uae_prefs *p, bool reset, int type) cr->rate = 60.0; cr->ntsc = 1; cr->locked = false; + cr->inuse = true; _tcscpy (cr->label, _T("NTSC")); p->lightboost_strobo = false; -- 2.47.3