diff options
author | D G Turner | 2012-11-23 20:44:17 +0000 |
---|---|---|
committer | D G Turner | 2012-11-23 20:44:17 +0000 |
commit | 4d75aa5319479f0c260c08dcbdf945dde41887ce (patch) | |
tree | da8d95e22d5d6c7703310cdfd5538f101f76b778 /engines | |
parent | d654057a98290dc6a53c1b1d87006e20222f65ce (diff) | |
download | scummvm-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.
Diffstat (limited to 'engines')
-rw-r--r-- | engines/composer/detection.cpp | 2 |
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", |