aboutsummaryrefslogtreecommitdiff
path: root/engines/cine/pal.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'engines/cine/pal.cpp')
-rw-r--r--engines/cine/pal.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/engines/cine/pal.cpp b/engines/cine/pal.cpp
index 460c3431d3..6da121a0f2 100644
--- a/engines/cine/pal.cpp
+++ b/engines/cine/pal.cpp
@@ -104,7 +104,7 @@ void loadRelatedPalette(const char *fileName) {
}
namespace {
-/*! \brief Is given endian type big endian? (Handles native endian type too, otherwise this would be trivial). */
+/** Is given endian type big endian? (Handles native endian type too, otherwise this would be trivial). */
bool isBigEndian(const EndianType endian) {
assert(endian == CINE_NATIVE_ENDIAN || endian == CINE_LITTLE_ENDIAN || endian == CINE_BIG_ENDIAN);
@@ -123,7 +123,7 @@ bool isBigEndian(const EndianType endian) {
#endif
}
-/*! \brief Calculate byte position of given bit position in a multibyte variable using defined endianness. */
+/** Calculate byte position of given bit position in a multibyte variable using defined endianness. */
int bytePos(const int bitPos, const int numBytes, const bool bigEndian) {
if (bigEndian)
return (numBytes - 1) - (bitPos / 8);
@@ -131,7 +131,7 @@ int bytePos(const int bitPos, const int numBytes, const bool bigEndian) {
return bitPos / 8;
}
-/*! \brief Calculate the value of "base" to the power of "power". */
+/** Calculate the value of "base" to the power of "power". */
int power(int base, int power) {
int result = 1;
while (power--)