diff options
author | Travis Howell | 2005-05-21 10:53:32 +0000 |
---|---|---|
committer | Travis Howell | 2005-05-21 10:53:32 +0000 |
commit | 4604bedb980bfedbcf3813990131e34f42671e01 (patch) | |
tree | df4dce1820058d1f92a17fcc7b03330d7e565d4d /scumm/imuse_digi | |
parent | b86e19b971fc9aa6665f090721033cc8fcb35c91 (diff) | |
download | scummvm-rg350-4604bedb980bfedbcf3813990131e34f42671e01.tar.gz scummvm-rg350-4604bedb980bfedbcf3813990131e34f42671e01.tar.bz2 scummvm-rg350-4604bedb980bfedbcf3813990131e34f42671e01.zip |
Trigger error if bundle file is missing.
svn-id: r18202
Diffstat (limited to 'scumm/imuse_digi')
-rw-r--r-- | scumm/imuse_digi/dimuse_bndmgr.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scumm/imuse_digi/dimuse_bndmgr.cpp b/scumm/imuse_digi/dimuse_bndmgr.cpp index 1c4a1d40f4..cb3b1f7a26 100644 --- a/scumm/imuse_digi/dimuse_bndmgr.cpp +++ b/scumm/imuse_digi/dimuse_bndmgr.cpp @@ -153,7 +153,7 @@ bool BundleMgr::open(const char *filename, bool &compressed) { return true; if (_file.open(filename) == false) { - warning("BundleMgr::openFile() Can't open bundle file: %s", filename); + error("BundleMgr::openFile() Can't open bundle file: %s", filename); return false; } |