aboutsummaryrefslogtreecommitdiff
path: root/engines/cine/part.cpp
diff options
context:
space:
mode:
authorMatthew Hoops2012-09-07 18:59:50 -0400
committerMatthew Hoops2012-09-07 19:03:01 -0400
commit8259d3cd9e68288dc622302fe84a924d6f94b00c (patch)
treef8ee4018c0be86e1f73c20dd81243199eccadb80 /engines/cine/part.cpp
parentc50d40b7bf0914c5a1a5da221cee146ab4aa2f63 (diff)
parentf08978a0750e6a6a5dbea1f8fe5d80267049f8c8 (diff)
downloadscummvm-rg350-8259d3cd9e68288dc622302fe84a924d6f94b00c.tar.gz
scummvm-rg350-8259d3cd9e68288dc622302fe84a924d6f94b00c.tar.bz2
scummvm-rg350-8259d3cd9e68288dc622302fe84a924d6f94b00c.zip
Merge remote branch 'upstream/master' into qtmidi
Diffstat (limited to 'engines/cine/part.cpp')
-rw-r--r--engines/cine/part.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/cine/part.cpp b/engines/cine/part.cpp
index 03cb743b46..813cbe50af 100644
--- a/engines/cine/part.cpp
+++ b/engines/cine/part.cpp
@@ -263,7 +263,7 @@ byte *readBundleSoundFile(const char *entryName, uint32 *size) {
/** Rotate byte value to the left by n bits */
byte rolByte(byte value, uint n) {
n %= 8;
- return (byte) ((value << n) | (value >> (8 - n)));
+ return (byte)((value << n) | (value >> (8 - n)));
}
byte *readFile(const char *filename, bool crypted) {