From 8cf1826b69a34fcfad129989168a67bca06d5de0 Mon Sep 17 00:00:00 2001 From: donluca <51792528+donluca@users.noreply.github.com> Date: Sun, 26 Feb 2023 21:45:59 +0000 Subject: [PATCH] Fix for error when compiling on 64-bit platforms --- src/config.cpp | 4 ++-- src/config.h | 4 ++-- src/minidexed.cpp | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/config.cpp b/src/config.cpp index 310829a..c55406e 100644 --- a/src/config.cpp +++ b/src/config.cpp @@ -122,7 +122,7 @@ 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; - m_EngineType = (unsigned)m_Properties.GetString ("EngineType", "MSFA"); + m_EngineType = m_Properties.GetString ("EngineType", "MSFA"); } const char *CConfig::GetSoundDevice (void) const @@ -390,7 +390,7 @@ bool CConfig::GetPerformanceSelectToLoad (void) const return m_bPerformanceSelectToLoad; } -unsigned CConfig::GetEngineType (void) const +const char *CConfig::GetEngineType (void) const { return m_EngineType; } diff --git a/src/config.h b/src/config.h index 1e3ae25..0f4fcd8 100644 --- a/src/config.h +++ b/src/config.h @@ -141,7 +141,7 @@ public: // Load performance mode. 0 for load just rotating encoder, 1 load just when Select is pushed bool GetPerformanceSelectToLoad (void) const; - unsigned GetEngineType (void) const; + const char *GetEngineType (void) const; private: @@ -210,7 +210,7 @@ private: bool m_bMIDIDumpEnabled; bool m_bProfileEnabled; bool m_bPerformanceSelectToLoad; - unsigned m_EngineType; + const char *m_EngineType; }; diff --git a/src/minidexed.cpp b/src/minidexed.cpp index caf2fc1..98e01db 100644 --- a/src/minidexed.cpp +++ b/src/minidexed.cpp @@ -92,7 +92,7 @@ CMiniDexed::CMiniDexed (CConfig *pConfig, CInterruptSystem *pInterrupt, m_pTG[i] = new CDexedAdapter (CConfig::MaxNotes, pConfig->GetSampleRate ()); assert (m_pTG[i]); - m_pTG[i]->setEngineType(pConfig->GetEngineType ()); + m_pTG[i]->setEngineType(atoi(pConfig->GetEngineType ())); m_pTG[i]->activate (); }