From: Frode Solheim Date: Fri, 1 Aug 2025 14:22:20 +0000 (+0200) Subject: Remove double assign X-Git-Url: https://git.unchartedbackwaters.co.uk/w/?a=commitdiff_plain;h=816ee61ef3c925dfce6a0b491e8be343847e3032;p=francis%2Fwinuae.git Remove double assign --- diff --git a/cpuboard.cpp b/cpuboard.cpp index 56de9182..6cbb2e37 100644 --- a/cpuboard.cpp +++ b/cpuboard.cpp @@ -2708,10 +2708,10 @@ bool cpuboard_autoconfig_init(struct autoconfig_info *aci) romtype = ROMTYPE_CB_TEKMAGIC; break; case BOARD_GVP_SUB_QUIKPAK: - romtype = romtype = ROMTYPE_CB_QUIKPAK; + romtype = ROMTYPE_CB_QUIKPAK; break; case BOARD_GVP_SUB_A1230SI: - romtype = romtype = ROMTYPE_CB_A1230S1; + romtype = ROMTYPE_CB_A1230S1; break; } break;