aboutsummaryrefslogtreecommitdiff
path: root/engines/scumm/util.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'engines/scumm/util.cpp')
-rw-r--r--engines/scumm/util.cpp10
1 files changed, 0 insertions, 10 deletions
diff --git a/engines/scumm/util.cpp b/engines/scumm/util.cpp
index c78b72d7f6..ccd0230efa 100644
--- a/engines/scumm/util.cpp
+++ b/engines/scumm/util.cpp
@@ -101,14 +101,4 @@ int normalizeAngle(int angle) {
return toSimpleDir(1, temp) * 45;
}
-const char *tag2str(uint32 tag) {
- static char str[5];
- str[0] = (char)(tag >> 24);
- str[1] = (char)(tag >> 16);
- str[2] = (char)(tag >> 8);
- str[3] = (char)tag;
- str[4] = '\0';
- return str;
-}
-
} // End of namespace Scumm