aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorD G Turner2012-11-23 20:44:17 +0000
committerD G Turner2012-11-23 20:44:17 +0000
commit4d75aa5319479f0c260c08dcbdf945dde41887ce (patch)
treeda8d95e22d5d6c7703310cdfd5538f101f76b778
parentd654057a98290dc6a53c1b1d87006e20222f65ce (diff)
downloadscummvm-rg350-4d75aa5319479f0c260c08dcbdf945dde41887ce.tar.gz
scummvm-rg350-4d75aa5319479f0c260c08dcbdf945dde41887ce.tar.bz2
scummvm-rg350-4d75aa5319479f0c260c08dcbdf945dde41887ce.zip
COMPOSER: Fix order of directoryGlobs qualifiers.
Some compilers throw a warning on the "const static" ordering, so the more standard "static const" should be used instead.
-rw-r--r--engines/composer/detection.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/composer/detection.cpp b/engines/composer/detection.cpp
index 835f3c5683..8411441c60 100644
--- a/engines/composer/detection.cpp
+++ b/engines/composer/detection.cpp
@@ -374,7 +374,7 @@ static const ComposerGameDescription gameDescriptions[] = {
using namespace Composer;
// we match from data too, to stop detection from a non-top-level directory
-const static char *directoryGlobs[] = {
+static const char *directoryGlobs[] = {
"data",
"liam",
"programs",