ASYLUM: Removed Video reference from Shared

git-svn-id: http://asylumengine.googlecode.com/svn/trunk@353 0bfb4aae-4ea4-11de-8d8d-752d95cf3e3c
This commit is contained in:
Alex Bevilacqua 2009-09-19 14:39:02 +00:00 committed by Eugene Sandulenko
parent 9868f8c40a
commit 9f39977ddd
No known key found for this signature in database
GPG key ID: 014D387312D34F08
6 changed files with 10 additions and 14 deletions

View file

@ -90,7 +90,6 @@ Common::Error AsylumEngine::init() {
Shared.setScreen(_screen);
Shared.setSound(_sound);
Shared.setVideo(_video);
_introPlaying = false;
@ -111,7 +110,7 @@ Common::Error AsylumEngine::go() {
// in the processActionList() method when the necessary action is fired.
// Once the blowup puzzle testing is removed from checkForEvent(), this
// can be removed as well.
_scene->setBlowUpPuzzle(new BlowUpPuzzleVCR()); // this will be done by a Script command
_scene->setBlowUpPuzzle(new BlowUpPuzzleVCR(_scene));
// XXX This can probably also be rolled into the scene constructor.
// Investigate if this will fuck up the execution sequence though :P