[Scummvm-cvs-logs] scummvm master -> 99087c7f454970665391004321c0fc510cdaf9bd

Strangerke Strangerke at scummvm.org
Sun Dec 21 22:56:36 CET 2014


This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .

Summary:
99087c7f45 ACCESS: Use enum instead of int to initialize video flag


Commit: 99087c7f454970665391004321c0fc510cdaf9bd
    https://github.com/scummvm/scummvm/commit/99087c7f454970665391004321c0fc510cdaf9bd
Author: Strangerke (strangerke at scummvm.org)
Date: 2014-12-21T22:55:24+01:00

Commit Message:
ACCESS: Use enum instead of int to initialize video flag

Changed paths:
    engines/access/video.cpp



diff --git a/engines/access/video.cpp b/engines/access/video.cpp
index edc0bcd..63d0aa5 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() {






More information about the Scummvm-git-logs mailing list