aboutsummaryrefslogtreecommitdiff
path: root/engines/cine/unpack.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'engines/cine/unpack.cpp')
-rw-r--r--engines/cine/unpack.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/engines/cine/unpack.cpp b/engines/cine/unpack.cpp
index 2c45566dec..254b09313e 100644
--- a/engines/cine/unpack.cpp
+++ b/engines/cine/unpack.cpp
@@ -23,7 +23,7 @@
*
*/
-#include "common/stdafx.h"
+
#include "common/endian.h"
#include "cine/unpack.h"
@@ -35,7 +35,7 @@ struct UnpackCtx {
uint32 crc;
uint32 chk;
byte *dst;
- const byte *src;
+ const byte *src;
};
static int rcr(UnpackCtx *uc, int CF) {
@@ -63,7 +63,7 @@ static uint16 getCode(UnpackCtx *uc, byte numChunks) {
c <<= 1;
if (nextChunk(uc)) {
c |= 1;
- }
+ }
}
return c;
}