diff options
Diffstat (limited to 'engines/mads/resources.h')
-rw-r--r-- | engines/mads/resources.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/engines/mads/resources.h b/engines/mads/resources.h index 6eee0eac88..68bb475aee 100644 --- a/engines/mads/resources.h +++ b/engines/mads/resources.h @@ -25,6 +25,7 @@ #include "common/scummsys.h" #include "common/stream.h" +#include "common/str.h" namespace MADS { @@ -39,11 +40,15 @@ public: /** * Return a named resource */ - Common::SeekableReadStream *get(const Common::String &resourceName) { + Common::SeekableReadStream *get(const Common::String &resourceName, bool loadFlag = false) { // TODO return nullptr; } + Common::SeekableReadStream *openFile(const Common::String &resourceName) { + return get(resourceName, false); + } + /** * Release a previously loaded resource */ |