diff options
author | Max Horn | 2008-10-03 16:07:57 +0000 |
---|---|---|
committer | Max Horn | 2008-10-03 16:07:57 +0000 |
commit | 84229ee79c484e199f9a5e74d5ffae6b29747f2a (patch) | |
tree | cf9c9f1664f8438de8eeb10141c572c946e6eb9d /engines/engine.h | |
parent | b178332e3e5eef2972e566b5a4fca5b66189ba20 (diff) | |
download | scummvm-rg350-84229ee79c484e199f9a5e74d5ffae6b29747f2a.tar.gz scummvm-rg350-84229ee79c484e199f9a5e74d5ffae6b29747f2a.tar.bz2 scummvm-rg350-84229ee79c484e199f9a5e74d5ffae6b29747f2a.zip |
Fixed Engine::hasFeature to use proper types (i.e., MetaEngine::MetaEngineFeature instead of int)
svn-id: r34731
Diffstat (limited to 'engines/engine.h')
-rw-r--r-- | engines/engine.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/engines/engine.h b/engines/engine.h index dec85885d8..148e4f24c6 100644 --- a/engines/engine.h +++ b/engines/engine.h @@ -30,6 +30,8 @@ #include "common/fs.h" #include "common/str.h" +#include "engines/metaengine.h" + class OSystem; namespace Audio { @@ -177,7 +179,7 @@ public: /** * Determine whether the engine supports the specified MetaEngine feature. */ - bool hasFeature(int f); + bool hasFeature(MetaEngine::MetaEngineFeature f); public: |