diff options
| author | Alyssa Milburn | 2011-12-08 23:12:53 +0100 | 
|---|---|---|
| committer | Alyssa Milburn | 2011-12-08 23:12:53 +0100 | 
| commit | 0d71aa7969dd1f235ff87b399b00d645ce63ccc5 (patch) | |
| tree | ce56251e5984adaf04623f49865e4168e4a25eb4 | |
| parent | 4fdaba7e5ece3ac9d1ac2c7848072c70c1c5c746 (diff) | |
| download | scummvm-rg350-0d71aa7969dd1f235ff87b399b00d645ce63ccc5.tar.gz scummvm-rg350-0d71aa7969dd1f235ff87b399b00d645ce63ccc5.tar.bz2 scummvm-rg350-0d71aa7969dd1f235ff87b399b00d645ce63ccc5.zip  | |
MOHAWK: LB variables are case-insensitive.
| -rw-r--r-- | engines/mohawk/livingbooks.h | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/mohawk/livingbooks.h b/engines/mohawk/livingbooks.h index 0a7c4f0965..1ab6e4d89c 100644 --- a/engines/mohawk/livingbooks.h +++ b/engines/mohawk/livingbooks.h @@ -719,7 +719,7 @@ public:  	void nextPage();  	// TODO: make private -	Common::HashMap<Common::String, LBValue> _variables; +	Common::HashMap<Common::String, LBValue, Common::IgnoreCase_Hash, Common::IgnoreCase_EqualTo> _variables;  	// helper functions, also used by LBProxyItem  	Common::String getFileNameFromConfig(const Common::String §ion, const Common::String &key, Common::String &leftover);  | 
