[Scummvm-git-logs] scummvm master -> 051503af61d4e74a1579b5e505eac63553cb1bfa
dreammaster
noreply at scummvm.org
Wed Apr 12 05:53:49 UTC 2023
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:
051503af61 MM: MM1: Fix incorrect string in Hacker view
Commit: 051503af61d4e74a1579b5e505eac63553cb1bfa
https://github.com/scummvm/scummvm/commit/051503af61d4e74a1579b5e505eac63553cb1bfa
Author: Paul Gilbert (dreammaster at scummvm.org)
Date: 2023-04-11T22:53:22-07:00
Commit Message:
MM: MM1: Fix incorrect string in Hacker view
Changed paths:
engines/mm/mm1/views/maps/hacker.cpp
diff --git a/engines/mm/mm1/views/maps/hacker.cpp b/engines/mm/mm1/views/maps/hacker.cpp
index fe3ebabd2b8..0cf1036d1e1 100644
--- a/engines/mm/mm1/views/maps/hacker.cpp
+++ b/engines/mm/mm1/views/maps/hacker.cpp
@@ -83,7 +83,7 @@ bool Hacker::msgKeypress(const KeypressMessage &msg) {
Character &c = g_globals->_party[0];
if (c._quest) {
Common::String line = Common::String::format("%s %s",
- STRING["maps.map36.hacker3."].c_str(),
+ STRING["maps.map36.hacker3"].c_str(),
STRING[Common::String::format(
"maps.map36.ingredients.%d",
g_globals->_party[0]._quest - 15)].c_str()
More information about the Scummvm-git-logs
mailing list