[Scummvm-git-logs] scummvm master -> 5291a72742ff87153ba4b7b7937682f614363c69

dreammaster dreammaster at scummvm.org
Thu Oct 27 01:26:21 CEST 2016


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:
5291a72742 TITANIC: Fix loading of item descriptions


Commit: 5291a72742ff87153ba4b7b7937682f614363c69
    https://github.com/scummvm/scummvm/commit/5291a72742ff87153ba4b7b7937682f614363c69
Author: Paul Gilbert (dreammaster at scummvm.org)
Date: 2016-10-26T19:26:14-04:00

Commit Message:
TITANIC: Fix loading of item descriptions

Changed paths:
    engines/titanic/titanic.cpp



diff --git a/engines/titanic/titanic.cpp b/engines/titanic/titanic.cpp
index 2566a36..84f52c8 100644
--- a/engines/titanic/titanic.cpp
+++ b/engines/titanic/titanic.cpp
@@ -149,7 +149,7 @@ void TitanicEngine::setItemNames() {
 
 	r = g_vm->_filesManager->getResource("TEXT/ITEM_DESCRIPTIONS");
 	while (r->pos() < r->size())
-		_itemNames.push_back(readStringFromStream(r));
+		_itemDescriptions.push_back(readStringFromStream(r));
 	delete r;
 
 	r = g_vm->_filesManager->getResource("TEXT/ITEM_IDS");





More information about the Scummvm-git-logs mailing list