From be068cf6f38be3e12ea0b12a6a9076f48c978138 Mon Sep 17 00:00:00 2001 From: Max Horn Date: Sun, 12 Feb 2006 01:42:34 +0000 Subject: The GameDetector is no longer a required parameter for Engine constructors svn-id: r20590 --- engines/lure/lure.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'engines/lure/lure.cpp') 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()) { -- cgit v1.2.3