aboutsummaryrefslogtreecommitdiff
path: root/engines/wintermute/utils/utils.h
diff options
context:
space:
mode:
authorEinar Johan Trøan Sømåen2012-07-29 14:56:39 +0200
committerEinar Johan Trøan Sømåen2012-07-29 14:56:39 +0200
commitda0ba41903bf50c3a6cb2923ca943386cd984f8c (patch)
tree53a9a692329b0c1fae9a664c1e6e2b435c8d9a5c /engines/wintermute/utils/utils.h
parent3a218180017e97e4b9dceca3bf25a232f271c6b9 (diff)
downloadscummvm-rg350-da0ba41903bf50c3a6cb2923ca943386cd984f8c.tar.gz
scummvm-rg350-da0ba41903bf50c3a6cb2923ca943386cd984f8c.tar.bz2
scummvm-rg350-da0ba41903bf50c3a6cb2923ca943386cd984f8c.zip
WINTERMUTE: Remove more unused utils.
Diffstat (limited to 'engines/wintermute/utils/utils.h')
-rw-r--r--engines/wintermute/utils/utils.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/engines/wintermute/utils/utils.h b/engines/wintermute/utils/utils.h
index 5b3ce65470..36a7398869 100644
--- a/engines/wintermute/utils/utils.h
+++ b/engines/wintermute/utils/utils.h
@@ -46,15 +46,12 @@ public:
static void debugMessage(const char *text);
static char *setString(char **string, const char *value);
- static int strNumEntries(const char *str, const char delim = ',');
static char *strEntry(int entry, const char *str, const char delim = ',');
static int randomInt(int from, int to);
static float randomFloat(float from, float to);
static float randomAngle(float from, float to);
- static bool matchesPattern(const char *pattern, const char *string);
-
static void RGBtoHSL(uint32 rgbColor, byte *outH, byte *outS, byte *outL);
static uint32 HSLtoRGB(byte H, byte S, byte L);