1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2026-06-19 22:28:35 -04:00

Fixed presets not loading correctly

This commit is contained in:
f4exb
2015-10-09 01:50:09 +02:00
parent c4be82a40b
commit 7a798f7dbf
3 changed files with 13 additions and 4 deletions
+3 -1
View File
@@ -115,7 +115,7 @@ bool Preset::deserialize(const QByteArray& data)
if (!sourceId.isEmpty())
{
qDebug("Preset::deserialize: source: id: %ss, ser: %s, seq: %d",
qDebug("Preset::deserialize: source: id: %s, ser: %s, seq: %d",
qPrintable(sourceId),
qPrintable(sourceSerial),
sourceSequence);
@@ -140,6 +140,8 @@ bool Preset::deserialize(const QByteArray& data)
qDebug("Preset::deserialize: channel: id: %s", qPrintable(channel));
m_channelConfigs.append(ChannelConfig(channel, config));
}
return true;
}
else
{