[Scummvm-cvs-logs] SF.net SVN: scummvm:[55656] scummvm/trunk/engines/mohawk/myst_areas.cpp

bgk at users.sourceforge.net bgk at users.sourceforge.net
Sun Jan 30 14:44:01 CET 2011


Revision: 55656
          http://scummvm.svn.sourceforge.net/scummvm/?rev=55656&view=rev
Author:   bgk
Date:     2011-01-30 13:44:01 +0000 (Sun, 30 Jan 2011)

Log Message:
-----------
MOHAWK: Myst, display a warning when trying to play a movie backwards.

Modified Paths:
--------------
    scummvm/trunk/engines/mohawk/myst_areas.cpp

Modified: scummvm/trunk/engines/mohawk/myst_areas.cpp
===================================================================
--- scummvm/trunk/engines/mohawk/myst_areas.cpp	2011-01-30 13:31:13 UTC (rev 55655)
+++ scummvm/trunk/engines/mohawk/myst_areas.cpp	2011-01-30 13:44:01 UTC (rev 55656)
@@ -184,8 +184,6 @@
 	if (_top < 0)
 		_top = 0;
 
-	if (_direction != 1)
-		warning("Type 6 _u0 != 1");
 	if (_u3 != 0)
 		warning("Type 6 _u3 != 0");
 
@@ -203,6 +201,9 @@
 	// Check if the video is already running
 	VideoHandle handle = _vm->_video->findVideoHandle(_videoFile);
 
+	if (_direction != 1)
+		warning("Playing QT movies backwards is not implemented");
+
 	// If the video is not running, play it
 	if (handle == NULL_VID_HANDLE || _vm->_video->endOfVideo(handle)) {
 		if (_playBlocking) {


This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.




More information about the Scummvm-git-logs mailing list