Skip to content

Commit

Permalink
SWORD25: Always create the MoviePlayer, even without USE_THEORADEC.
Browse files Browse the repository at this point in the history
  • Loading branch information
fuzzie committed Apr 14, 2011
1 parent 2ac86f8 commit a762173
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions engines/sword25/kernel/kernel.cpp
Expand Up @@ -95,10 +95,8 @@ Kernel::Kernel() :
_geometry = new Geometry(this);
assert(_geometry);

#ifdef USE_THEORADEC
_fmv = new MoviePlayer(this);
assert(_fmv);
#endif

_initSuccess = true;
}
Expand All @@ -121,10 +119,8 @@ Kernel::~Kernel() {
delete _geometry;
_geometry = 0;

#ifdef USE_THEORADEC
delete _fmv;
_fmv = 0;
#endif

delete _script;
_script = 0;
Expand Down

0 comments on commit a762173

Please sign in to comment.