rename bs2 to sword2 to have the same name as the original engine.

besides this way all our engines start with an "s" ;)

svn-id: r9301
This commit is contained in:
Oliver Kiehl 2003-07-30 19:25:31 +00:00
parent 26d05c0190
commit 0f85cc3061
36 changed files with 337 additions and 337 deletions

View file

@ -144,10 +144,10 @@ Engine *Engine::createFromDetector(GameDetector *detector, OSystem *syst) {
}
#endif
#ifndef DISABLE_BS2
if (detector->_game.id >= GID_BS2_FIRST && detector->_game.id <= GID_BS2_LAST) {
#ifndef DISABLE_SWORD2
if (detector->_game.id >= GID_SWORD2_FIRST && detector->_game.id <= GID_SWORD2_LAST) {
// Broken Sword 2
engine = Engine_BS2_create(detector, syst);
engine = Engine_SWORD2_create(detector, syst);
}
#endif