[Scummvm-cvs-logs] scummvm master -> e6fbf372fbabeb91b42c074910f0cc880f8f31e5

bluegr bluegr at gmail.com
Tue Feb 2 20:20:57 CET 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:
e6fbf372fb LAB: Fix wrong glowing belt file in getInvName()


Commit: e6fbf372fbabeb91b42c074910f0cc880f8f31e5
    https://github.com/scummvm/scummvm/commit/e6fbf372fbabeb91b42c074910f0cc880f8f31e5
Author: Filippos Karapetis (bluegr at gmail.com)
Date: 2016-02-02T21:19:59+02:00

Commit Message:
LAB: Fix wrong glowing belt file in getInvName()

A regression from 4fb53ad170f483bbce2e27643cd3ee1fa604cebd

Changed paths:
    engines/lab/engine.cpp



diff --git a/engines/lab/engine.cpp b/engines/lab/engine.cpp
index fa2791c..6ba4053 100644
--- a/engines/lab/engine.cpp
+++ b/engines/lab/engine.cpp
@@ -266,7 +266,7 @@ Common::String LabEngine::getInvName(uint16 curInv) {
 		return "P:Mines/120";
 
 	if ((curInv == kItemBelt) && _conditions->in(kCondBeltGlowing))
-		return "P:Future/kCondBeltGlowing";
+		return "P:Future/BeltGlow";
 
 	if (curInv == kItemWestPaper) {
 		_curFileName = _inventory[curInv]._bitmapName;






More information about the Scummvm-git-logs mailing list