aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFilippos Karapetis2012-11-15 18:26:15 +0200
committerFilippos Karapetis2012-11-15 18:26:15 +0200
commit542b99bfe7afabe838e207795ceccc56b05ee73b (patch)
tree81b6f85c335e1ef1071d78659c02a81ded9be4d4
parent29efcce7c0101bd67d303619144a15606c73c45c (diff)
downloadscummvm-rg350-542b99bfe7afabe838e207795ceccc56b05ee73b.tar.gz
scummvm-rg350-542b99bfe7afabe838e207795ceccc56b05ee73b.tar.bz2
scummvm-rg350-542b99bfe7afabe838e207795ceccc56b05ee73b.zip
GROOVIE: Added documentation for the GameSpeed enum
-rw-r--r--engines/groovie/groovie.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/engines/groovie/groovie.h b/engines/groovie/groovie.h
index df2f062757..c66e54b500 100644
--- a/engines/groovie/groovie.h
+++ b/engines/groovie/groovie.h
@@ -72,6 +72,13 @@ enum DebugLevels {
// the current limitation is 32 debug levels (1 << 31 is the last one)
};
+/**
+ * This enum reflects the available movie speed settings:
+ * - Normal: both movies and 'teeth' animations are played at a normal speed
+ * - Tweaked: movies are played at a normal speed, 'teeth' animations at
+ increased speed
+ * - iOS: both movies and 'teeth' animations are played at increased speed
+ */
enum GameSpeed {
kGroovieSpeedNormal,
kGroovieSpeediOS,