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

dreammaster dreammaster at scummvm.org
Wed Sep 27 02:42:01 CEST 2017


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:
bd388fed62 TITANIC: Convert some remaining strings to use their titanic.dat entries


Commit: bd388fed62a8d55e542eca5aa2bc46677f1a5f74
    https://github.com/scummvm/scummvm/commit/bd388fed62a8d55e542eca5aa2bc46677f1a5f74
Author: Paul Gilbert (dreammaster at scummvm.org)
Date: 2017-09-26T20:41:35-04:00

Commit Message:
TITANIC: Convert some remaining strings to use their titanic.dat entries

Changed paths:
    engines/titanic/pet_control/pet_rooms_glyphs.cpp


diff --git a/engines/titanic/pet_control/pet_rooms_glyphs.cpp b/engines/titanic/pet_control/pet_rooms_glyphs.cpp
index c14b9e7..af73cb8 100644
--- a/engines/titanic/pet_control/pet_rooms_glyphs.cpp
+++ b/engines/titanic/pet_control/pet_rooms_glyphs.cpp
@@ -149,13 +149,13 @@ void CPetRoomsGlyph::getTooltip(CTextControl *text) {
 
 	CString prefix;
 	if (isCurrentlyAssigned()) {
-		prefix = "Your assigned room: ";
+		prefix = g_vm->_strings[YOUR_ASSIGNED_ROOM];
 	} else if (isPreviouslyAssigned()) {
-		prefix = "A previously assigned room: ";
+		prefix = g_vm->_strings[PREVIOUSLY_ASSIGNED_ROOM];
 	} else if (!_mailFlag) {
-		prefix = "Saved Chevron: ";
+		prefix = g_vm->_strings[SAVED_CHEVRON];
 	} else if (_mailFlag == 1 && owner->getRoomFlags() == _roomFlags) {
-		prefix = "Current location: ";
+		prefix = g_vm->_strings[CURRENT_LOCATION];
 	}
 
 	// Get the room description





More information about the Scummvm-git-logs mailing list