[Scummvm-git-logs] scummvm master -> d794fe1c92d01e5253384d338ef5c81e5b000813

neuromancer noreply at scummvm.org
Thu Feb 10 12:05:59 UTC 2022


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:
d794fe1c92 HYPNO: fix video path in the spider note puzzle


Commit: d794fe1c92d01e5253384d338ef5c81e5b000813
    https://github.com/scummvm/scummvm/commit/d794fe1c92d01e5253384d338ef5c81e5b000813
Author: neuromancer (gustavo.grieco at gmail.com)
Date: 2022-02-10T13:06:07+01:00

Commit Message:
HYPNO: fix video path in the spider note puzzle

Changed paths:
    engines/hypno/spider/hard.cpp


diff --git a/engines/hypno/spider/hard.cpp b/engines/hypno/spider/hard.cpp
index 702a00fd0fd..7d0a1603fae 100644
--- a/engines/hypno/spider/hard.cpp
+++ b/engines/hypno/spider/hard.cpp
@@ -322,12 +322,12 @@ void SpiderEngine::runNote(Code *code) {
 	MVideo *v = nullptr;
 
 	if (_sceneState["GS_PUZZLELEVEL"] == 0) { // easy
-		v = new MVideo("int_ball/ppv007es.smk", Common::Point(0, 0), false, true, false);
+		v = new MVideo("cine/ppv007es.smk", Common::Point(0, 0), false, true, false);
 		runIntro(*v);
 		delete v;
 		loadImage("int_ball/enote.smk", 0, 0, false, true);
 	} else { // hard
-		v = new MVideo("int_ball/ppv007hs.smk", Common::Point(0, 0), false, true, false);
+		v = new MVideo("cine/ppv007hs.smk", Common::Point(0, 0), false, true, false);
 		runIntro(*v);
 		delete v;
 		loadImage("int_ball/hnote.smk", 0, 0, false, true);




More information about the Scummvm-git-logs mailing list