diff options
Diffstat (limited to 'engines/advancedDetector.h')
-rw-r--r-- | engines/advancedDetector.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/engines/advancedDetector.h b/engines/advancedDetector.h index 1e59df04bf..0ebb264f74 100644 --- a/engines/advancedDetector.h +++ b/engines/advancedDetector.h @@ -45,6 +45,7 @@ struct ADGameFileDescription { enum ADGameFlags { ADGF_NO_FLAGS = 0, + ADGF_PIRATED = (1 << 23), // flag to designate well known pirated versions with cracks ADGF_ADDENGLISH = (1 << 24), // always add English as language option ADGF_MACRESFORK = (1 << 25), // the md5 for this entry will be calculated from the resource fork ADGF_USEEXTRAASTITLE = (1 << 26), // Extra field value will be used as main game title, not gameid @@ -207,7 +208,7 @@ struct ADParams { * * @note Last item must be 0 */ - const char **directoryGlobs; + const char * const *directoryGlobs; }; |