aboutsummaryrefslogtreecommitdiff
path: root/engines/lure/lure.cpp
diff options
context:
space:
mode:
authorMax Horn2006-02-12 01:42:34 +0000
committerMax Horn2006-02-12 01:42:34 +0000
commitbe068cf6f38be3e12ea0b12a6a9076f48c978138 (patch)
tree7e267024920fef6683a32fda9f98b103d2335cd1 /engines/lure/lure.cpp
parent24a5ba86a7a4ec4992cb81d6faca14198efc6d48 (diff)
downloadscummvm-rg350-be068cf6f38be3e12ea0b12a6a9076f48c978138.tar.gz
scummvm-rg350-be068cf6f38be3e12ea0b12a6a9076f48c978138.tar.bz2
scummvm-rg350-be068cf6f38be3e12ea0b12a6a9076f48c978138.zip
The GameDetector is no longer a required parameter for Engine constructors
svn-id: r20590
Diffstat (limited to 'engines/lure/lure.cpp')
-rw-r--r--engines/lure/lure.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/lure/lure.cpp b/engines/lure/lure.cpp
index 3adc27eea9..ae60261e5c 100644
--- a/engines/lure/lure.cpp
+++ b/engines/lure/lure.cpp
@@ -146,14 +146,14 @@ DetectedGameList Engine_LURE_detectGames(const FSList &fslist) {
}
Engine *Engine_LURE_create(GameDetector *detector, OSystem *system) {
- return new LureEngine(detector, system);
+ return new LureEngine(system);
}
REGISTER_PLUGIN(LURE, "Lure of the Temptress Engine")
namespace Lure {
-LureEngine::LureEngine(GameDetector *detector, OSystem *system): Engine(system) {
+LureEngine::LureEngine(OSystem *system): Engine(system) {
// Setup mixer
/*
if (!_mixer->isReady()) {