diff options
author | Johannes Schickel | 2012-01-06 15:59:16 +0100 |
---|---|---|
committer | Johannes Schickel | 2012-01-06 15:59:16 +0100 |
commit | e454788a2340fc8d500c78670f52fe2582014876 (patch) | |
tree | 30d7cb86c2f2a50ae888fb76ee7bb73d7cd51b88 /graphics | |
parent | d2a210feb5d511c2aead9ca49bfbaa40cd10add6 (diff) | |
download | scummvm-rg350-e454788a2340fc8d500c78670f52fe2582014876.tar.gz scummvm-rg350-e454788a2340fc8d500c78670f52fe2582014876.tar.bz2 scummvm-rg350-e454788a2340fc8d500c78670f52fe2582014876.zip |
GRAPHICS: Whops. Fix misformatting introduced with 243de59.
Diffstat (limited to 'graphics')
-rw-r--r-- | graphics/jpeg.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/graphics/jpeg.cpp b/graphics/jpeg.cpp index de5f5b35e2..8809477405 100644 --- a/graphics/jpeg.cpp +++ b/graphics/jpeg.cpp @@ -655,7 +655,7 @@ int16 JPEG::readSignedBits(uint8 numBits) { // Extend sign bits (PAG109) if (!(ret >> (numBits - 1))) { - uint16 tmp = ((uint16) - 1 << numBits) + 1; + uint16 tmp = ((uint16)-1 << numBits) + 1; ret = ret + tmp; } return ret; |