aboutsummaryrefslogtreecommitdiff
path: root/engines/cine/flip_support.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'engines/cine/flip_support.cpp')
-rw-r--r--engines/cine/flip_support.cpp15
1 files changed, 0 insertions, 15 deletions
diff --git a/engines/cine/flip_support.cpp b/engines/cine/flip_support.cpp
index 27d6a9d985..f67095179b 100644
--- a/engines/cine/flip_support.cpp
+++ b/engines/cine/flip_support.cpp
@@ -40,18 +40,3 @@ void flipU32(uint32 * pVar) {
*pVar = (part2) | ((uint32) part1 << 16);
}
-
-uint16 readU16LE(const void *ptr) {
- const uint8 *b = (const uint8 *)ptr;
- return (b[1] << 8) | b[0];
-}
-
-uint16 readU16BE(const void *ptr) {
- const uint8 *b = (const uint8 *)ptr;
- return (b[0] << 8) | b[1];
-}
-
-uint32 readU32BE(const void *ptr) {
- const uint8 *b = (const uint8 *)ptr;
- return (b[0] << 24) | (b[1] << 16) | (b[2] << 8) | b[3];
-}