From: Toni Wilen Date: Wed, 24 Aug 2016 16:11:47 +0000 (+0300) Subject: Built-in PAL/NTSC missing inuse state. X-Git-Tag: 3400~117 X-Git-Url: https://git.unchartedbackwaters.co.uk/w/?a=commitdiff_plain;h=a382d94bd56f93cdae0f9e9df769d3c145ba2419;p=francis%2Fwinuae.git Built-in PAL/NTSC missing inuse state. --- 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;