aboutsummaryrefslogtreecommitdiff
path: root/sound/shorten.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'sound/shorten.cpp')
-rw-r--r--sound/shorten.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/sound/shorten.cpp b/sound/shorten.cpp
index e8066a49be..8f5f8456f7 100644
--- a/sound/shorten.cpp
+++ b/sound/shorten.cpp
@@ -116,13 +116,13 @@ ShortenGolombReader::ShortenGolombReader(Common::ReadStream *stream, int version
int32 ShortenGolombReader::getURice(uint32 numBits) {
int32 result = 0;
- if(!_nbitget) {
+ if (!_nbitget) {
_buf = _stream->readUint32BE();
_nbitget = 32;
}
for (result = 0; !(_buf & (1L << --_nbitget)); result++) {
- if(!_nbitget) {
+ if (!_nbitget) {
_buf = _stream->readUint32BE();
_nbitget = 32;
}