aboutsummaryrefslogtreecommitdiff
path: root/engines/cge/general.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'engines/cge/general.cpp')
-rw-r--r--engines/cge/general.cpp11
1 files changed, 0 insertions, 11 deletions
diff --git a/engines/cge/general.cpp b/engines/cge/general.cpp
index 7cd44a81d0..13a92d38c2 100644
--- a/engines/cge/general.cpp
+++ b/engines/cge/general.cpp
@@ -63,17 +63,6 @@ char *forceExt(char *buf, const char *name, const char *ext) {
return buf;
}
-char *wtom(uint16 val, char *str, int radix, int len) {
- while (--len >= 0) {
- uint16 w = val % radix;
- if (w > 9)
- w += ('A' - ('9' + 1));
- str[len] = '0' + w;
- val /= radix;
- }
- return str;
-}
-
void sndSetVolume() {
// USeless for ScummVM
}