aboutsummaryrefslogtreecommitdiff
path: root/engines/access
diff options
context:
space:
mode:
authorStrangerke2014-12-21 22:55:24 +0100
committerStrangerke2014-12-21 22:55:24 +0100
commit99087c7f454970665391004321c0fc510cdaf9bd (patch)
tree27650c65f8bb155436ad2c3a249fde1242631f33 /engines/access
parent8bc30d0dfbc538c3631692a807d37e9007958da9 (diff)
downloadscummvm-rg350-99087c7f454970665391004321c0fc510cdaf9bd.tar.gz
scummvm-rg350-99087c7f454970665391004321c0fc510cdaf9bd.tar.bz2
scummvm-rg350-99087c7f454970665391004321c0fc510cdaf9bd.zip
ACCESS: Use enum instead of int to initialize video flag
Diffstat (limited to 'engines/access')
-rw-r--r--engines/access/video.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/access/video.cpp b/engines/access/video.cpp
index edc0bcda27..63d0aa5c89 100644
--- a/engines/access/video.cpp
+++ b/engines/access/video.cpp
@@ -41,7 +41,7 @@ VideoPlayer::VideoPlayer(AccessEngine *vm) : Manager(vm) {
_header._frameCount = 0;
_header._width = _header._height = 0;
- _header._flags = 0;
+ _header._flags = VIDEOFLAG_NONE;
}
VideoPlayer::~VideoPlayer() {