aboutsummaryrefslogtreecommitdiff
path: root/sword2
diff options
context:
space:
mode:
authorTorbjörn Andersson2003-12-01 10:24:02 +0000
committerTorbjörn Andersson2003-12-01 10:24:02 +0000
commitb0037e29e24eca4a75891522612318acaae6d3c5 (patch)
tree42163488933c6e898d6d498ef06d925f593de432 /sword2
parentb39836306028af7454fc545987f952934613217e (diff)
downloadscummvm-rg350-b0037e29e24eca4a75891522612318acaae6d3c5.tar.gz
scummvm-rg350-b0037e29e24eca4a75891522612318acaae6d3c5.tar.bz2
scummvm-rg350-b0037e29e24eca4a75891522612318acaae6d3c5.zip
Removed semi-colon after REGISTER_PLUGIN() to be consistent with the other
game engines. svn-id: r11447
Diffstat (limited to 'sword2')
-rw-r--r--sword2/sword2.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/sword2/sword2.cpp b/sword2/sword2.cpp
index 5c5b3ac4b0..b6d40c3251 100644
--- a/sword2/sword2.cpp
+++ b/sword2/sword2.cpp
@@ -74,7 +74,7 @@ Engine *Engine_SWORD2_create(GameDetector *detector, OSystem *syst) {
return new Sword2::Sword2Engine(detector, syst);
}
-REGISTER_PLUGIN("Broken Sword II", Engine_SWORD2_gameList, Engine_SWORD2_create, Engine_SWORD2_detectGames);
+REGISTER_PLUGIN("Broken Sword II", Engine_SWORD2_gameList, Engine_SWORD2_create, Engine_SWORD2_detectGames)
namespace Sword2 {