diff --git a/mpc/mpcproperties.cpp b/mpc/mpcproperties.cpp index 029de5b7..2d3f863c 100644 --- a/mpc/mpcproperties.cpp +++ b/mpc/mpcproperties.cpp @@ -116,7 +116,7 @@ void MPC::Properties::read() if(d->version >= 7) { frames = d->data.mid(4, 4).toUInt(false); - std::bitset<32> flags = d->data.mid(8, 4).toUInt(true); + std::bitset<32> flags = d->data.mid(8, 4).toUInt(false); d->sampleRate = sftable[flags[17] * 2 + flags[16]]; d->channels = 2; }