From 02a5f4880ac2c8ede3c7774372e52d7e87e39442 Mon Sep 17 00:00:00 2001 From: Toni Wilen Date: Mon, 2 Jan 2023 20:47:38 +0200 Subject: [PATCH] Fix platform specific hardware only config --- cfgfile.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/cfgfile.cpp b/cfgfile.cpp index 674ea74d..79268fd1 100644 --- a/cfgfile.cpp +++ b/cfgfile.cpp @@ -5653,6 +5653,7 @@ static int cfgfile_parse_hardware (struct uae_prefs *p, const TCHAR *option, TCH _tcscpy(tmpbuf, option); tmpbuf[tmpp - option] = 0; if (_tcscmp(tmpbuf, TARGET_NAME) == 0) { + option = tmpp + 1; return target_parse_option(p, option, value, CONFIG_TYPE_HARDWARE); } } -- 2.47.3