diff options
author | Ori Avtalion | 2010-04-09 13:46:10 +0000 |
---|---|---|
committer | Ori Avtalion | 2010-04-09 13:46:10 +0000 |
commit | 003922f43deab6b9899cd796ef6004eaf45e77c6 (patch) | |
tree | bd9c5b49889c55ff9c8a8badd6b9c89630bd89be | |
parent | 3558ccccc4829bcb9c1222949d1dcfe10b06f3cc (diff) | |
download | scummvm-rg350-003922f43deab6b9899cd796ef6004eaf45e77c6.tar.gz scummvm-rg350-003922f43deab6b9899cd796ef6004eaf45e77c6.tar.bz2 scummvm-rg350-003922f43deab6b9899cd796ef6004eaf45e77c6.zip |
Remove unnecessary 'extern' keywords
svn-id: r48598
-rw-r--r-- | engines/lure/res_struct.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/lure/res_struct.cpp b/engines/lure/res_struct.cpp index 85fc157f85..a75ba6eac8 100644 --- a/engines/lure/res_struct.cpp +++ b/engines/lure/res_struct.cpp @@ -32,7 +32,7 @@ namespace Lure { -extern const int actionNumParams[NPC_JUMP_ADDRESS+1] = {0, +const int actionNumParams[NPC_JUMP_ADDRESS+1] = {0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 2, 2, 1, 1, 1, 1, 1, 1, 2, 0, 1, 0, 1, 1, 1, 1, 0, 0, 2, 1, 1, 0, 0, 1, 1, 2, 2, 5, 2, 2, 1}; @@ -68,7 +68,7 @@ static const BarEntry default_barList[3] = { &ewanExtraGraphic1[0], &ewanExtraGraphic2[0]}, 16, NULL} }; -extern const RoomTranslationRecord roomTranslations[] = { +const RoomTranslationRecord roomTranslations[] = { {0x1E, 0x13}, {0x07, 0x08}, {0x1C, 0x12}, {0x26, 0x0F}, {0x27, 0x0F}, {0x28, 0x0F}, {0x29, 0x0F}, {0x22, 0x0A}, {0x23, 0x13}, {0x24, 0x14}, {0x31, 0x2C}, {0x2F, 0x2C}, |