From 27ce1ff27e1fd3e7b511bc20c6578f9999e4c5a9 Mon Sep 17 00:00:00 2001 From: Mike Kosek Date: Tue, 18 Feb 2025 17:58:19 +0100 Subject: [PATCH] Removed fallback to deprecated config keys --- core/sdl/dreamconn.cpp | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/core/sdl/dreamconn.cpp b/core/sdl/dreamconn.cpp index 918112583..7c3a08a77 100644 --- a/core/sdl/dreamconn.cpp +++ b/core/sdl/dreamconn.cpp @@ -228,18 +228,6 @@ public: // use user-configured serial device if available, fallback to first available serial_device = cfgLoadStr("input", "DreamPicoPortSerialDevice", ""); - if (serial_device.empty()) { - serial_device = cfgLoadStr("input", "DreamPortSerialDevice", ""); - if (!serial_device.empty()) { - WARN_LOG(INPUT, "DreamPortSerialDevice config is deprecated; use DreamPicoPortSerialDevice instead"); - } else { - serial_device = cfgLoadStr("input", "DreamcastControllerUsbSerialDevice", ""); - if (!serial_device.empty()) { - WARN_LOG(INPUT, "DreamcastControllerUsbSerialDevice config is deprecated; use DreamPicoPortSerialDevice instead"); - } - } - } - if (!serial_device.empty()) { NOTICE_LOG(INPUT, "DreamPicoPort connecting to user-configured serial device: %s", serial_device.c_str());