aboutsummaryrefslogtreecommitdiff
path: root/engines/zvision
diff options
context:
space:
mode:
authorRichieSams2013-10-01 17:09:53 -0500
committerRichieSams2013-10-02 09:09:51 -0500
commit01238925da50c8467ce24cfe6c2cca07494a8b8e (patch)
tree83dc449d1fdb5b18a9f909338a98a0fb61366978 /engines/zvision
parentdb28babf066b83576a5d9b67d5c7e29c931fbb66 (diff)
downloadscummvm-rg350-01238925da50c8467ce24cfe6c2cca07494a8b8e.tar.gz
scummvm-rg350-01238925da50c8467ce24cfe6c2cca07494a8b8e.tar.bz2
scummvm-rg350-01238925da50c8467ce24cfe6c2cca07494a8b8e.zip
ZVISION: Fix curly braces formatting
Diffstat (limited to 'engines/zvision')
-rw-r--r--engines/zvision/lzss_read_stream.cpp21
1 files changed, 10 insertions, 11 deletions
diff --git a/engines/zvision/lzss_read_stream.cpp b/engines/zvision/lzss_read_stream.cpp
index 03ab12d8be..4a5a4f3657 100644
--- a/engines/zvision/lzss_read_stream.cpp
+++ b/engines/zvision/lzss_read_stream.cpp
@@ -45,39 +45,38 @@ uint32 LzssReadStream::decompressBytes(byte *destination, uint32 numberOfBytes)
uint mask = 1;
for (int i = 0; i < 8; i++) {
- if ((flagbyte & mask) == mask)
- {
+ if ((flagbyte & mask) == mask) {
byte data = _source->readByte();
- if (_source->eos())
+ if (_source->eos()) {
return destinationCursor;
+ }
_window[_windowCursor] = data;
destination[destinationCursor++] = data;
// Increment and wrap the window cursor
_windowCursor = (_windowCursor + 1) & 0xFFF;
- }
- else
- {
+ } else {
byte low = _source->readByte();
- if (_source->eos())
+ if (_source->eos()) {
return destinationCursor;
+ }
byte high = _source->readByte();
- if (_source->eos())
+ if (_source->eos()) {
return destinationCursor;
+ }
uint16 length = (high & 0xF) + 2;
uint16 offset = low | ((high & 0xF0)<<4);
- for(int j = 0; j <= length; j++)
- {
+ for(int j = 0; j <= length; j++) {
byte temp = _window[(offset + j) & 0xFFF];
_window[_windowCursor] = temp;
destination[destinationCursor++] = temp;
_windowCursor = (_windowCursor + 1) & 0xFFF;
}
- };
+ }
mask = mask << 1;
}