From c216f3d7216a9e72a1e4f7adb895a3231e9b2e32 Mon Sep 17 00:00:00 2001 From: Jack Andersen Date: Mon, 30 May 2016 12:50:00 -1000 Subject: [PATCH] Fix support for loading RAW .son files --- driver/main.cpp | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/driver/main.cpp b/driver/main.cpp index 5d7e19c..8c2d10b 100644 --- a/driver/main.cpp +++ b/driver/main.cpp @@ -636,6 +636,12 @@ struct AppCallback : boo::IApplicationCallback else Log.report(logvisor::Fatal, "unable to find Song %d", userSel); } + else + { + m_arrData = &songs[0].second; + m_groupId = m_arrData->m_groupId; + m_setupId = m_arrData->m_setupId; + } } /* Get group selection from user */