aboutsummaryrefslogtreecommitdiff
path: root/engines/gargoyle/gargoyle.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'engines/gargoyle/gargoyle.cpp')
-rw-r--r--engines/gargoyle/gargoyle.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/engines/gargoyle/gargoyle.cpp b/engines/gargoyle/gargoyle.cpp
index 986a40ab78..a481ae9624 100644
--- a/engines/gargoyle/gargoyle.cpp
+++ b/engines/gargoyle/gargoyle.cpp
@@ -30,7 +30,7 @@
#include "graphics/thumbnail.h"
#include "gargoyle/gargoyle.h"
#include "gargoyle/events.h"
-#include "gargoyle/stream.h"
+#include "gargoyle/streams.h"
#include "gargoyle/windows.h"
namespace Gargoyle {
@@ -57,8 +57,8 @@ void GargoyleEngine::initialize() {
initGraphics(640, 480, false);
_screen = new Graphics::Screen();
_events = new Events();
- _streams = new Streams();
- _windows = new Windows(_screen);
+ _streams = new Streams(this);
+ _windows = new Windows(this, _screen);
}
Common::Error GargoyleEngine::run() {