From b2673cc3c2a15a51ef754031a802f9fbbaa9b7c3 Mon Sep 17 00:00:00 2001 From: Toni Wilen Date: Sat, 11 Jan 2025 16:30:58 +0200 Subject: [PATCH] Fix bordercolor config entry. --- cfgfile.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cfgfile.cpp b/cfgfile.cpp index c6db413a..d7746244 100644 --- a/cfgfile.cpp +++ b/cfgfile.cpp @@ -2478,7 +2478,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++) { -- 2.47.3