diff options
author | Le Philousophe | 2019-07-05 08:02:23 +0200 |
---|---|---|
committer | Le Philousophe | 2019-07-05 08:03:15 +0200 |
commit | fe8a9a6f1e692ec0a8dd80e5ae6e8e60e65c1907 (patch) | |
tree | e12a067190c30274d28b2af1f5bd46fb7314c423 /engines | |
parent | 58b9848ccf834086d5577ad346a7229dcd8a17f3 (diff) | |
download | scummvm-rg350-fe8a9a6f1e692ec0a8dd80e5ae6e8e60e65c1907.tar.gz scummvm-rg350-fe8a9a6f1e692ec0a8dd80e5ae6e8e60e65c1907.tar.bz2 scummvm-rg350-fe8a9a6f1e692ec0a8dd80e5ae6e8e60e65c1907.zip |
CRYOMNI3D: Fix Travis warning about comma at the end of list
Diffstat (limited to 'engines')
-rw-r--r-- | engines/cryomni3d/cryomni3d.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/cryomni3d/cryomni3d.h b/engines/cryomni3d/cryomni3d.h index fa60cdbfd7..20f8371147 100644 --- a/engines/cryomni3d/cryomni3d.h +++ b/engines/cryomni3d/cryomni3d.h @@ -69,7 +69,7 @@ enum CryOmni3DGameType { enum CryOmni3DGameFeatures { GF_VERSAILLES_NUMERICFONTS = (1 << 0), // Fonts are font01.crf, ... - GF_VERSAILLES_AUDIOPADDING = (1 << 1), // Audio files have underscore padding before extension + GF_VERSAILLES_AUDIOPADDING = (1 << 1) // Audio files have underscore padding before extension }; struct CryOmni3DGameDescription; |