[Scummvm-git-logs] scummvm master -> 09548e0364ea1fd6ca95359adf3624d60cea64e9
antoniou79
noreply at scummvm.org
Sun May 4 09:25:06 UTC 2025
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:
09548e0364 TSAGE: Fix computer prompt for password
Commit: 09548e0364ea1fd6ca95359adf3624d60cea64e9
https://github.com/scummvm/scummvm/commit/09548e0364ea1fd6ca95359adf3624d60cea64e9
Author: antoniou79 (a.antoniou79 at gmail.com)
Date: 2025-05-04T12:24:53+03:00
Commit Message:
TSAGE: Fix computer prompt for password
The password prompt should end at a ">" character, and not "},"
Originally the password promt was set correctly to "PASSWORD -> " (see https://github.com/scummvm/scummvm/commit/e3ad2e81b1633694d7d0824eb45994b23154589e)
but then in https://github.com/scummvm/scummvm/commit/0b4929877aa42511440096825bcbca8b6541b7d8
it was changed to "PASSWORD -}, " which is likely to have been a side-effect of some
batch string replace process rather than intentional.
Changed paths:
engines/tsage/staticres.cpp
diff --git a/engines/tsage/staticres.cpp b/engines/tsage/staticres.cpp
index be29591ef50..d5c8c6de62d 100644
--- a/engines/tsage/staticres.cpp
+++ b/engines/tsage/staticres.cpp
@@ -269,8 +269,8 @@ char const *const BIKINI_HUT = "Bikini Hut";
// Scene 60 radio messages
char const *const RADIO_BTN_LIST[8] = { "10-2 ", "10-4 ", "10-13", "10-15", "10-27", "10-35", "10-97", "10-98" };
-// Scene 570 computer messageS
-char const *const SCENE570_PASSWORD = "PASSWORD - }, ";
+// Scene 570 computer messages
+char const *const SCENE570_PASSWORD = "PASSWORD -> ";
char const *const SCENE570_C_DRIVE = "C:\\";
char const *const SCENE570_RING = "RING";
char const *const SCENE570_PROTO = "PROTO";
More information about the Scummvm-git-logs
mailing list