From 2fd934fd6ae4a56dfd3eaf5bc1eec1709dd86edd Mon Sep 17 00:00:00 2001 From: Jonathan Naylor Date: Sat, 29 Apr 2017 09:47:02 +0100 Subject: [PATCH] Fix the XLX Slot parameter. --- Conf.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Conf.cpp b/Conf.cpp index 4d2825c..6393851 100644 --- a/Conf.cpp +++ b/Conf.cpp @@ -108,7 +108,7 @@ bool CConf::read() if (section == SECTION_GENERAL) { if (::strcmp(key, "Daemon") == 0) m_daemon = ::atoi(value) == 1; - else if (::strcmp(key, "XLSSlot") == 0) + else if (::strcmp(key, "XLXSlot") == 0) m_xlxSlot = (unsigned int)::atoi(value); else if (::strcmp(key, "XLXTG") == 0) m_xlxTG = (unsigned int)::atoi(value);