aboutsummaryrefslogtreecommitdiff
path: root/engines/lure/lure.cpp
diff options
context:
space:
mode:
authorPaul Gilbert2006-02-19 04:05:45 +0000
committerPaul Gilbert2006-02-19 04:05:45 +0000
commit91d6bd57d71d4c21e2ab8fe06704322bdc282ac1 (patch)
tree5781a139231c50a44adee639a17138751c853375 /engines/lure/lure.cpp
parentf868a59940a12a45dc34b0e0f5b8f666818a00fc (diff)
downloadscummvm-rg350-91d6bd57d71d4c21e2ab8fe06704322bdc282ac1.tar.gz
scummvm-rg350-91d6bd57d71d4c21e2ab8fe06704322bdc282ac1.tar.bz2
scummvm-rg350-91d6bd57d71d4c21e2ab8fe06704322bdc282ac1.zip
Changed subsystem object create methods whose constructors I've switched to the newer getReference access
svn-id: r20758
Diffstat (limited to 'engines/lure/lure.cpp')
-rw-r--r--engines/lure/lure.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/engines/lure/lure.cpp b/engines/lure/lure.cpp
index 181f78d444..2fc47f7d62 100644
--- a/engines/lure/lure.cpp
+++ b/engines/lure/lure.cpp
@@ -251,9 +251,9 @@ int LureEngine::init(GameDetector &detector) {
_resources = new Resources();
_strings = new StringData();
_screen = new Screen(*_system);
- _mouse = new Mouse(*_system);
- _events = new Events(*_system, *_mouse);
- _menu = new Menu(*_system);
+ _mouse = new Mouse();
+ _events = new Events();
+ _menu = new Menu();
Surface::initialise();
_room = new Room();