Update tunings to 0ba372f

This commit is contained in:
Jean Pierre Cimalando 2021-04-06 14:14:04 +02:00
parent 939b93107b
commit e6e28a6a44
2 changed files with 3 additions and 3 deletions

View file

@ -1,2 +1,2 @@
Based on the Surge tuning library, revision d9660ef, with small modifications
Based on the Surge tuning library, revision 0ba372f, with small modifications
https://github.com/surge-synthesizer/tuning-library

View file

@ -83,7 +83,7 @@ namespace Tunings
{
lineno ++;
if (line.empty() || line[0] == '!')
if ((state == read_note && line.empty()) || line[0] == '!')
{
continue;
}
@ -209,7 +209,7 @@ namespace Tunings
while (std::getline(inf, line))
{
lineno ++;
if (line.empty() || line[0] == '!')
if (!line.empty() && line[0] == '!')
{
continue;
}