diff options
author | Max Horn | 2003-12-01 09:58:55 +0000 |
---|---|---|
committer | Max Horn | 2003-12-01 09:58:55 +0000 |
commit | 72eb8ccb8934b0032a3f53a9ffc0e21bce4bdf23 (patch) | |
tree | 7208b0b5188243c8dc4ba68a0332d4bab93ce198 /simon | |
parent | 81a5d0e1f32b8084bf0773d0fbfb9579d2bff399 (diff) | |
download | scummvm-rg350-72eb8ccb8934b0032a3f53a9ffc0e21bce4bdf23.tar.gz scummvm-rg350-72eb8ccb8934b0032a3f53a9ffc0e21bce4bdf23.tar.bz2 scummvm-rg350-72eb8ccb8934b0032a3f53a9ffc0e21bce4bdf23.zip |
Patch #847464: Remove spurious semicolons
svn-id: r11445
Diffstat (limited to 'simon')
-rw-r--r-- | simon/simon.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/simon/simon.cpp b/simon/simon.cpp index 18a7687240..16220b38b0 100644 --- a/simon/simon.cpp +++ b/simon/simon.cpp @@ -102,7 +102,7 @@ Engine *Engine_SIMON_create(GameDetector *detector, OSystem *syst) { return new Simon::SimonEngine(detector, syst); } -REGISTER_PLUGIN("Simon the Sorcerer", Engine_SIMON_gameList, Engine_SIMON_create, Engine_SIMON_detectGames); +REGISTER_PLUGIN("Simon the Sorcerer", Engine_SIMON_gameList, Engine_SIMON_create, Engine_SIMON_detectGames) namespace Simon { |