diff options
author | Strangerke | 2014-12-21 22:55:24 +0100 |
---|---|---|
committer | Strangerke | 2014-12-21 22:55:24 +0100 |
commit | 99087c7f454970665391004321c0fc510cdaf9bd (patch) | |
tree | 27650c65f8bb155436ad2c3a249fde1242631f33 /engines | |
parent | 8bc30d0dfbc538c3631692a807d37e9007958da9 (diff) | |
download | scummvm-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')
-rw-r--r-- | engines/access/video.cpp | 2 |
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() { |