diff options
author | Max Horn | 2006-04-08 12:06:07 +0000 |
---|---|---|
committer | Max Horn | 2006-04-08 12:06:07 +0000 |
commit | e7a8bb6abff3a6bee3b28aa5a599912df43ed120 (patch) | |
tree | bfdee598558bc508c07a3037321ab3d6db8a17e7 /engines/simon | |
parent | dc77d02c7e63ab9185870a8c6028ccab9dbbf716 (diff) | |
download | scummvm-rg350-e7a8bb6abff3a6bee3b28aa5a599912df43ed120.tar.gz scummvm-rg350-e7a8bb6abff3a6bee3b28aa5a599912df43ed120.tar.bz2 scummvm-rg350-e7a8bb6abff3a6bee3b28aa5a599912df43ed120.zip |
Modified the REGISTER_PLUGIN macro so that it allows (and requires) a trailing semicolon (this helps certain tools to parse our code better)
svn-id: r21689
Diffstat (limited to 'engines/simon')
-rw-r--r-- | engines/simon/game.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/simon/game.cpp b/engines/simon/game.cpp index 16f879d25d..6882794498 100644 --- a/engines/simon/game.cpp +++ b/engines/simon/game.cpp @@ -133,7 +133,7 @@ Engine *Engine_SIMON_create(GameDetector *detector, OSystem *syst) { return new Simon::SimonEngine(syst); } -REGISTER_PLUGIN(SIMON, "Simon the Sorcerer") +REGISTER_PLUGIN(SIMON, "Simon the Sorcerer"); namespace Simon { |