Thought I got all of these

This commit is contained in:
Alex Barney 2019-03-03 14:20:35 -06:00
commit 7c645430d0
2 changed files with 4 additions and 4 deletions

View file

@ -45,9 +45,9 @@ namespace Ryujinx.Graphics.VDec
_buffer |= ((value >> srcShift) & mask) << dstShift; _buffer |= ((value >> srcShift) & mask) << dstShift;
valuePos += copySize; valuePos += copySize;
_bufferPos += copySize; _bufferPos += copySize;
remaining -= copySize; remaining -= copySize;
} }
} }

View file

@ -76,8 +76,8 @@ namespace Ryujinx.Graphics.VDec
int shift = NormLut[range]; int shift = NormLut[range];
range <<= shift; range <<= shift;
_count += shift; _count += shift;
if (_count >= 0) if (_count >= 0)
{ {