Manager: Extend the serial_enabled list to 8 entries, fixes the manager.

This commit is contained in:
OBattler
2025-06-26 23:45:40 +02:00
parent 3d42dbcb0e
commit 37dfa93c47

View File

@@ -719,7 +719,7 @@ VMManagerSystem::setupVars() {
// Serial
// By default serial 1 and 2 are enabled unless otherwise specified
static auto serial_match = QRegularExpression("serial\\d_enabled", QRegularExpression::CaseInsensitiveOption);
QList<bool> serial_enabled = {true, true, false, false};
QList<bool> serial_enabled = {true, true, false, false, false, false, false, false};
// Parallel
// By default lpt 1 is enabled unless otherwise specified
static auto lpt_match = QRegularExpression("lpt\\d_enabled", QRegularExpression::CaseInsensitiveOption);