Update minidexed.cpp

pull/228/head
arsamus 3 years ago committed by GitHub
parent d4fdf3651e
commit 3ec5a666d8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 15
      src/minidexed.cpp

@ -192,8 +192,11 @@ bool CMiniDexed::Initialize (void)
SetMIDIChannel (CMIDIDevice::OmniMode, 0); SetMIDIChannel (CMIDIDevice::OmniMode, 0);
} }
// load performances // load performances file list, and attempt to create the performance folder
m_PerformanceConfig.ListPerformances(); if (!m_PerformanceConfig.ListPerformances())
{
LOGERR ("Cannot create internal Performance folder, new performances can't be created");
}
// setup and start the sound device // setup and start the sound device
if (!m_pSoundDevice->AllocateQueueFrames (m_pConfig->GetChunkSize ())) if (!m_pSoundDevice->AllocateQueueFrames (m_pConfig->GetChunkSize ()))
@ -1213,23 +1216,19 @@ bool CMiniDexed::DoSetNewPerformance (void)
if (m_PerformanceConfig.Load ()) if (m_PerformanceConfig.Load ())
{ {
LoadPerformanceParameters(); LoadPerformanceParameters();
LOGDBG ("Performance %s successfully loaded", m_PerformanceConfig.GetPerformanceName(nID));
return true; return true;
} }
else else
{ {
SetMIDIChannel (CMIDIDevice::OmniMode, 0); SetMIDIChannel (CMIDIDevice::OmniMode, 0);
LOGDBG ("Error loading performance %s", m_PerformanceConfig.GetPerformanceName(nID));
return false; return false;
} }
} }
bool CMiniDexed::SavePerformanceNewFile () bool CMiniDexed::SavePerformanceNewFile ()
{ {
m_bSavePerformanceNewFile = true; m_bSavePerformanceNewFile = m_PerformanceConfig.GetInternalFolderOk();
return m_bSavePerformanceNewFile;
return true;
} }
bool CMiniDexed::DoSavePerformanceNewFile (void) bool CMiniDexed::DoSavePerformanceNewFile (void)

Loading…
Cancel
Save