[Scummvm-git-logs] scummvm master -> 254b48e1bd747f0d2d409ed8f10d490947a429db
ccawley2011
ccawley2011 at gmail.com
Sat Dec 7 21:52:59 UTC 2019
This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .
Summary:
254b48e1bd COMPOSER: Remove comma from the end of the GameFileTypes enum
Commit: 254b48e1bd747f0d2d409ed8f10d490947a429db
https://github.com/scummvm/scummvm/commit/254b48e1bd747f0d2d409ed8f10d490947a429db
Author: Cameron Cawley (ccawley2011 at gmail.com)
Date: 2019-12-07T21:52:56Z
Commit Message:
COMPOSER: Remove comma from the end of the GameFileTypes enum
Changed paths:
engines/composer/composer.h
diff --git a/engines/composer/composer.h b/engines/composer/composer.h
index 64ec077..45a4667 100644
--- a/engines/composer/composer.h
+++ b/engines/composer/composer.h
@@ -61,7 +61,7 @@ enum GameType {
enum GameFileTypes {
GAME_CONFIGFILE = 1 << 0, // Game configuration
GAME_SCRIPTFILE = 1 << 1, // Game script
- GAME_EXECUTABLE = 1 << 2, // Game executable
+ GAME_EXECUTABLE = 1 << 2 // Game executable
};
class Archive;
More information about the Scummvm-git-logs
mailing list