Unsupported signals do not throw exceptions anymore

This commit is contained in:
zawz 2019-07-08 06:03:32 +02:00
parent a34c6bcf35
commit 49195c1553

View file

@ -292,7 +292,8 @@ void Device::run_signal(char* buff)
type='p';
else
{
throw std::runtime_error("Unknown MIDI signal:\n" + std::string(buff));
// throw std::runtime_error("Unknown MIDI signal:\n" + std::string(buff));
printf("Unsupported signal, ignoring\n");
return;
}