[Scummvm-git-logs] scummvm master -> 366cd0470420f1c96526fe08e8a40c8cb071e228

neuromancer neuromancer at users.noreply.github.com
Sat Jul 3 19:35:21 UTC 2021


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:
366cd04704 PRIVATE: fixed AskSave redirection


Commit: 366cd0470420f1c96526fe08e8a40c8cb071e228
    https://github.com/scummvm/scummvm/commit/366cd0470420f1c96526fe08e8a40c8cb071e228
Author: neuromancer (gustavo.grieco at gmail.com)
Date: 2021-07-03T21:35:00+02:00

Commit Message:
PRIVATE: fixed AskSave redirection

Changed paths:
    engines/private/funcs.cpp


diff --git a/engines/private/funcs.cpp b/engines/private/funcs.cpp
index 33cf8904a3..f11dc945b4 100644
--- a/engines/private/funcs.cpp
+++ b/engines/private/funcs.cpp
@@ -722,7 +722,7 @@ static void fSafeDigit(ArgArray args) {
 static void fAskSave(ArgArray args) {
 	// This is not needed, since scummvm will take care of this
 	debugC(1, kPrivateDebugScript, "WARNING: AskSave is partially implemented");
-	g_private->_nextSetting = args[0].u.str;
+	g_private->_nextSetting = *args[0].u.sym->name;
 }
 
 static void fTimer(ArgArray args) {




More information about the Scummvm-git-logs mailing list