Fix a return value

This commit is contained in:
Chris Robinson
2020-06-07 11:47:39 -07:00
parent b4a52321c4
commit 2a324d34be
+1 -1
View File
@@ -192,7 +192,7 @@ bool SndioPlayback::reset()
if(par.bits != par.bps*8)
{
ERR("Padded samples not supported (%u of %u bits)\n", par.bits, par.bps*8);
return true;
return false;
}
mDevice->Frequency = par.rate;