aboutsummaryrefslogtreecommitdiff
path: root/engines/cine/part.cpp
diff options
context:
space:
mode:
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 f47433e709..ad5aaf54b0 100644
--- a/engines/cine/part.cpp
+++ b/engines/cine/part.cpp
@@ -264,7 +264,7 @@ byte *readBundleSoundFile(const char *entryName, uint32 *size) {
return data;
}
-/*! \brief Rotate byte value to the left by n bits */
+/** Rotate byte value to the left by n bits */
byte rolByte(byte value, uint n) {
n %= 8;
return (byte) ((value << n) | (value >> (8 - n)));