bugfix: Fix bordercolor config entry.

This commit is contained in:
Dimitris Panokostas 2025-01-11 23:20:13 +01:00
parent 7a4a51647f
commit ee4e7c60b4
No known key found for this signature in database
GPG Key ID: 330156A68E9E0929

View File

@ -2462,7 +2462,7 @@ void cfgfile_save_options (struct zfile *f, struct uae_prefs *p, int type)
cfgfile_dwrite_strarr(f, _T("gfx_overscanmode"), overscanmodes, p->gfx_overscanmode);
cfgfile_dwrite(f, _T("gfx_monitorblankdelay"), _T("%d"), p->gfx_monitorblankdelay);
cfgfile_dwrite(f, _T("gfx_rotation"), _T("%d"), p->gfx_rotation);
cfgfile_dwrite (f, _T("gfx_bordercolor"), _T("%08x"), p->gfx_bordercolor);
cfgfile_dwrite(f, _T("gfx_bordercolor"), _T("0x%08x"), p->gfx_bordercolor);
#ifdef GFXFILTER
for (int j = 0; j < MAX_FILTERDATA; j++) {