revert the > to >> change, fixes regression in loading ppmd 7z files.

This commit is contained in:
squall-leonhart 2013-04-01 05:45:42 +00:00
parent d3c562a1cf
commit 0f0d6289d5
1 changed files with 1 additions and 1 deletions

View File

@ -542,7 +542,7 @@ static void UpdateModel(CPpmd7 *p)
s->Freq <<= 1;
else
s->Freq = MAX_FREQ - 4;
c->SummFreq = (UInt16)(s->Freq + p->InitEsc + (ns >> 3));
c->SummFreq = (UInt16)(s->Freq + p->InitEsc + (ns > 3));
}
cf = 2 * (UInt32)p->FoundState->Freq * (c->SummFreq + 6);
sf = (UInt32)s0 + c->SummFreq;