aboutsummaryrefslogtreecommitdiff
path: root/engines/wintermute/utils/utils.h
diff options
context:
space:
mode:
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);