aboutsummaryrefslogtreecommitdiff
path: root/engines/sludge/movie.h
diff options
context:
space:
mode:
authorSimei Yin2017-07-20 10:39:24 +0200
committerSimei Yin2017-07-20 19:10:01 +0200
commitcaa51ef49af5f6e92169a2f8095c08325823cb44 (patch)
tree9e2b060bf7d325d84a9b212416b36916ceaad277 /engines/sludge/movie.h
parent9752d7bb43f41106147e7a39e0381fae51443c94 (diff)
downloadscummvm-rg350-caa51ef49af5f6e92169a2f8095c08325823cb44.tar.gz
scummvm-rg350-caa51ef49af5f6e92169a2f8095c08325823cb44.tar.bz2
scummvm-rg350-caa51ef49af5f6e92169a2f8095c08325823cb44.zip
SLUDGE: Change all structure names to Uppercase
Diffstat (limited to 'engines/sludge/movie.h')
-rw-r--r--engines/sludge/movie.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/sludge/movie.h b/engines/sludge/movie.h
index c34322f9bc..c1aa1191a3 100644
--- a/engines/sludge/movie.h
+++ b/engines/sludge/movie.h
@@ -27,10 +27,10 @@ namespace Sludge {
/*
movieIsPlaying tracks the state of movie playing
*/
-enum movieStates {
+enum MovieStates {
nothing = 0, playing, paused
};
-extern movieStates movieIsPlaying;
+extern MovieStates movieIsPlaying;
int playMovie(int fileNumber);
int stopMovie();