diff options
author | Max Horn | 2006-04-29 00:27:20 +0000 |
---|---|---|
committer | Max Horn | 2006-04-29 00:27:20 +0000 |
commit | bf7359881115a5b041028b032ee28430bc5e36d3 (patch) | |
tree | 78c955620bb16d4b4e39f3b887eed35dd552c57b /engines/lure | |
parent | b00262a2fe1b8bf1d51794a9da3e735e97dfb5ee (diff) | |
download | scummvm-rg350-bf7359881115a5b041028b032ee28430bc5e36d3.tar.gz scummvm-rg350-bf7359881115a5b041028b032ee28430bc5e36d3.tar.bz2 scummvm-rg350-bf7359881115a5b041028b032ee28430bc5e36d3.zip |
* Changed the createEngine() factory function of our plugins to return an error code (the engine is now passed indirectly via a double pointer)
* Removed Engine_Empty (obsolete now that engines can return actual error codes)
svn-id: r22199
Diffstat (limited to 'engines/lure')
-rw-r--r-- | engines/lure/lure.cpp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/engines/lure/lure.cpp b/engines/lure/lure.cpp index 5ec33994a3..dab02a5ca3 100644 --- a/engines/lure/lure.cpp +++ b/engines/lure/lure.cpp @@ -154,8 +154,10 @@ DetectedGameList Engine_LURE_detectGames(const FSList &fslist) { return detectedGames; } -Engine *Engine_LURE_create(OSystem *system) { - return new LureEngine(system); +PluginError Engine_LURE_create(OSystem *syst, Engine **engine) { + assert(engine); + *engine = new LureEngine(syst); + return kNoError; } REGISTER_PLUGIN(LURE, "Lure of the Temptress Engine"); |