Removed semi-colon after REGISTER_PLUGIN() to be consistent with the other

game engines.

svn-id: r11447
This commit is contained in:
Torbjörn Andersson 2003-12-01 10:24:02 +00:00
parent b398363060
commit b0037e29e2

View File

@ -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 {