From 816ee61ef3c925dfce6a0b491e8be343847e3032 Mon Sep 17 00:00:00 2001 From: Frode Solheim Date: Fri, 1 Aug 2025 16:22:20 +0200 Subject: [PATCH] Remove double assign --- cpuboard.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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; -- 2.47.3