From b43fae5c1800900e1aab117bbd8f91df1f22a2a3 Mon Sep 17 00:00:00 2001 From: Bastien Bouclet Date: Sun, 30 Jan 2011 13:44:01 +0000 Subject: MOHAWK: Myst, display a warning when trying to play a movie backwards. svn-id: r55656 --- engines/mohawk/myst_areas.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'engines/mohawk') diff --git a/engines/mohawk/myst_areas.cpp b/engines/mohawk/myst_areas.cpp index 2b591d8438..761002036c 100644 --- a/engines/mohawk/myst_areas.cpp +++ b/engines/mohawk/myst_areas.cpp @@ -184,8 +184,6 @@ MystResourceType6::MystResourceType6(MohawkEngine_Myst *vm, Common::SeekableRead 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 @@ VideoHandle MystResourceType6::playMovie() { // 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) { -- cgit v1.2.3