|
|
|
@ -47,6 +47,15 @@ void CConfig::Load (void) |
|
|
|
|
m_nDACI2CAddress = m_Properties.GetNumber ("DACI2CAddress", 0); |
|
|
|
|
m_bChannelsSwapped = m_Properties.GetNumber ("ChannelsSwapped", 0) != 0; |
|
|
|
|
|
|
|
|
|
unsigned newEngineType = m_Properties.GetNumber ("EngineType", 1); |
|
|
|
|
if (newEngineType == 2) { |
|
|
|
|
m_EngineType = MKI; |
|
|
|
|
} else if (newEngineType == 3) { |
|
|
|
|
m_EngineType = OPL; |
|
|
|
|
} else { |
|
|
|
|
m_EngineType = MSFA; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
m_nMIDIBaudRate = m_Properties.GetNumber ("MIDIBaudRate", 31250); |
|
|
|
|
|
|
|
|
|
const char *pMIDIThru = m_Properties.GetString ("MIDIThru"); |
|
|
|
@ -123,15 +132,6 @@ void CConfig::Load (void) |
|
|
|
|
m_bMIDIDumpEnabled = m_Properties.GetNumber ("MIDIDumpEnabled", 0) != 0; |
|
|
|
|
m_bProfileEnabled = m_Properties.GetNumber ("ProfileEnabled", 0) != 0; |
|
|
|
|
m_bPerformanceSelectToLoad = m_Properties.GetNumber ("PerformanceSelectToLoad", 1) != 0; |
|
|
|
|
|
|
|
|
|
unsigned newEngineType = m_Properties.GetNumber ("EngineType", 1); |
|
|
|
|
if (newEngineType == 2) { |
|
|
|
|
m_EngineType = MKI; |
|
|
|
|
} else if (newEngineType == 3) { |
|
|
|
|
m_EngineType = OPL; |
|
|
|
|
} else { |
|
|
|
|
m_EngineType = MSFA; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
const char *CConfig::GetSoundDevice (void) const |
|
|
|
@ -159,6 +159,11 @@ bool CConfig::GetChannelsSwapped (void) const |
|
|
|
|
return m_bChannelsSwapped; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
unsigned CConfig::GetEngineType (void) const |
|
|
|
|
{ |
|
|
|
|
return m_EngineType; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
unsigned CConfig::GetMIDIBaudRate (void) const |
|
|
|
|
{ |
|
|
|
|
return m_nMIDIBaudRate; |
|
|
|
@ -399,7 +404,4 @@ bool CConfig::GetPerformanceSelectToLoad (void) const |
|
|
|
|
return m_bPerformanceSelectToLoad; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
unsigned CConfig::GetEngineType (void) const |
|
|
|
|
{ |
|
|
|
|
return m_EngineType; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|