From b0037e29e24eca4a75891522612318acaae6d3c5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Torbj=C3=B6rn=20Andersson?= Date: Mon, 1 Dec 2003 10:24:02 +0000 Subject: [PATCH] Removed semi-colon after REGISTER_PLUGIN() to be consistent with the other game engines. svn-id: r11447 --- sword2/sword2.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sword2/sword2.cpp b/sword2/sword2.cpp index 5c5b3ac4b07..b6d40c3251f 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 {