aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKamil Zbrog2014-03-31 19:28:54 +0200
committerlukaslw2014-06-22 19:22:59 +0200
commit8e9f08cf433b556751d74aac94c09c224d58383f (patch)
tree8458e6385b65bd0d6ac23b0b55f96eb1697a661e
parent4c7326cfae914639bb5aa974b886f549cefdc4c5 (diff)
downloadscummvm-rg350-8e9f08cf433b556751d74aac94c09c224d58383f.tar.gz
scummvm-rg350-8e9f08cf433b556751d74aac94c09c224d58383f.tar.bz2
scummvm-rg350-8e9f08cf433b556751d74aac94c09c224d58383f.zip
PRINCE: Fixed 'All' subdirectory handling
-rw-r--r--engines/prince/prince.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/engines/prince/prince.cpp b/engines/prince/prince.cpp
index d778f48b10..bdb05bfeda 100644
--- a/engines/prince/prince.cpp
+++ b/engines/prince/prince.cpp
@@ -150,27 +150,27 @@ void PrinceEngine::init() {
_midiPlayer = new MusicPlayer(this);
_font = new Font();
- Resource::loadResource(_font, "all/font1.raw");
+ Resource::loadResource(_font, "font1.raw");
_walizkaBmp = new MhwanhDecoder();
- Resource::loadResource(_walizkaBmp, "all/walizka");
+ Resource::loadResource(_walizkaBmp, "walizka");
_script = new Script();
- Resource::loadResource(_script, "all/skrypt.dat");
+ Resource::loadResource(_script, "skrypt.dat");
_flags = new InterpreterFlags();
_interpreter = new Interpreter(this, _script, _flags);
_variaTxt = new VariaTxt();
- Resource::loadResource(_variaTxt, "all/variatxt.dat");
+ Resource::loadResource(_variaTxt, "variatxt.dat");
_cursor1 = new Cursor();
- Resource::loadResource(_cursor1, "all/mouse1.cur");
+ Resource::loadResource(_cursor1, "mouse1.cur");
_cursor2 = new Cursor();
- Resource::loadResource(_cursor2, "all/mouse2.cur");
+ Resource::loadResource(_cursor2, "mouse2.cur");
- Common::SeekableReadStream *talkTxtStream = SearchMan.createReadStreamForMember("all/talktxt.dat");
+ Common::SeekableReadStream *talkTxtStream = SearchMan.createReadStreamForMember("talktxt.dat");
if (!talkTxtStream) {
error("Can't load talkTxtStream");
return;