Skip to content

Commit

Permalink
ACCESS: Use enum instead of int to initialize video flag
Browse files Browse the repository at this point in the history
  • Loading branch information
Strangerke committed Dec 21, 2014
1 parent 8bc30d0 commit 99087c7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion engines/access/video.cpp
Expand Up @@ -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() {
Expand Down

0 comments on commit 99087c7

Please sign in to comment.