aboutsummaryrefslogtreecommitdiff
path: root/engines/avalanche/avalot.cpp
diff options
context:
space:
mode:
authorStrangerke2013-10-04 17:52:12 +0200
committerStrangerke2013-10-04 17:52:12 +0200
commit300859aa43bf4f14afc005fdcebb392cf2a88000 (patch)
treee93ea9194bc57e8d7582a30a604b003d36ae07aa /engines/avalanche/avalot.cpp
parent89559e07a3b337a27798aedb1ef64f257fdfe649 (diff)
downloadscummvm-rg350-300859aa43bf4f14afc005fdcebb392cf2a88000.tar.gz
scummvm-rg350-300859aa43bf4f14afc005fdcebb392cf2a88000.tar.bz2
scummvm-rg350-300859aa43bf4f14afc005fdcebb392cf2a88000.zip
AVALANCHE: Fix static array names
Diffstat (limited to 'engines/avalanche/avalot.cpp')
-rw-r--r--engines/avalanche/avalot.cpp16
1 files changed, 8 insertions, 8 deletions
diff --git a/engines/avalanche/avalot.cpp b/engines/avalanche/avalot.cpp
index 5b28629660..ef33b4c563 100644
--- a/engines/avalanche/avalot.cpp
+++ b/engines/avalanche/avalot.cpp
@@ -1545,22 +1545,22 @@ bool AvalancheEngine::decreaseMoney(uint16 amount) {
}
Common::String AvalancheEngine::getName(People whose) {
- static const Common::String kLads[17] = {
+ static const Common::String lads[17] = {
"Avalot", "Spludwick", "Crapulus", "Dr. Duck", "Malagauche", "Friar Tuck",
"Robin Hood", "Cwytalot", "du Lustie", "the Duke of Cardiff", "Dogfood",
"A trader", "Ibythneth", "Ayles", "Port", "Spurge", "Jacques"
};
- static const Common::String kLasses[4] = {"Arkata", "Geida", "\0xB1", "the Wise Woman"};
+ static const Common::String lasses[4] = {"Arkata", "Geida", "\0xB1", "the Wise Woman"};
if (whose < kPeopleArkata)
- return kLads[whose - kPeopleAvalot];
+ return lads[whose - kPeopleAvalot];
else
- return kLasses[whose - kPeopleArkata];
+ return lasses[whose - kPeopleArkata];
}
Common::String AvalancheEngine::getItem(byte which) {
- static const Common::String kItems[kObjectNum] = {
+ static const Common::String items[kObjectNum] = {
"some wine", "your money-bag", "your bodkin", "a potion", "a chastity belt",
"a crossbow bolt", "a crossbow", "a lute", "a pilgrim's badge", "a mushroom",
"a key", "a bell", "a scroll", "a pen", "some ink", "your clothes", "a habit",
@@ -1577,7 +1577,7 @@ Common::String AvalancheEngine::getItem(byte which) {
case 0:
case 1:
case 4:
- get_better_result = kItems[which - 1];
+ get_better_result = items[which - 1];
break;
case 3:
get_better_result = "some vinegar";
@@ -1590,11 +1590,11 @@ Common::String AvalancheEngine::getItem(byte which) {
else if (_onionInVinegar)
get_better_result = "a pickled onion (in the vinegar)";
else
- get_better_result = kItems[which - 1];
+ get_better_result = items[which - 1];
break;
default:
if ((which < kObjectNum) && (which > 0))
- get_better_result = kItems[which - 1];
+ get_better_result = items[which - 1];
else
get_better_result = "";
}