aboutsummaryrefslogtreecommitdiff
path: root/engines
diff options
context:
space:
mode:
Diffstat (limited to 'engines')
-rw-r--r--engines/sci/resource.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/sci/resource.cpp b/engines/sci/resource.cpp
index 767dab8d66..42f5d15a2c 100644
--- a/engines/sci/resource.cpp
+++ b/engines/sci/resource.cpp
@@ -437,7 +437,7 @@ Common::File *ResourceManager::getVolumeFile(const char *filename) {
return NULL;
}
-static const uint32 resTypeToMacTag(ResourceType type);
+static uint32 resTypeToMacTag(ResourceType type);
void ResourceManager::loadResource(Resource *res) {
if (res->_source->source_type == kSourcePatch && loadFromPatchFile(res))
@@ -1459,7 +1459,7 @@ static const uint32 resourceTypeMacTags[] = {
'MSG ', 0, 'HEP '
};
-static const uint32 resTypeToMacTag(ResourceType type) {
+static uint32 resTypeToMacTag(ResourceType type) {
if (type >= ARRAYSIZE(resourceTypeMacTags))
return 0;