[Scummvm-git-logs] scummvm master -> 5d378e5cfa4b17647d905f36a842c3bac47cbe2a

whoozle noreply at scummvm.org
Fri Mar 6 21:55:42 UTC 2026


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

Summary:
5d378e5cfa PHOENIXVR: script/warp commands are asynchronous and require resuming engine execution, close console after them


Commit: 5d378e5cfa4b17647d905f36a842c3bac47cbe2a
    https://github.com/scummvm/scummvm/commit/5d378e5cfa4b17647d905f36a842c3bac47cbe2a
Author: Vladimir Menshakov (vladimir.menshakov at gmail.com)
Date: 2026-03-06T21:55:30Z

Commit Message:
PHOENIXVR: script/warp commands are asynchronous and require resuming engine execution, close console after them

Changed paths:
    engines/phoenixvr/console.cpp


diff --git a/engines/phoenixvr/console.cpp b/engines/phoenixvr/console.cpp
index a529f9136f0..f90bf6fdfa7 100644
--- a/engines/phoenixvr/console.cpp
+++ b/engines/phoenixvr/console.cpp
@@ -38,7 +38,7 @@ bool Console::cmdWarp(int argc, const char **argv) {
 		return true;
 	}
 	g_engine->goToWarp(argv[1]);
-	return true;
+	return false;
 }
 
 bool Console::cmdScript(int argc, const char **argv) {
@@ -47,7 +47,7 @@ bool Console::cmdScript(int argc, const char **argv) {
 		return true;
 	}
 	g_engine->setNextScript(argv[1]);
-	return true;
+	return false;
 }
 
 } // End of namespace PhoenixVR




More information about the Scummvm-git-logs mailing list