From 2ac0b7d7aee73ff385ca0aca0ae8916f7088f89d Mon Sep 17 00:00:00 2001 From: Torbjörn Andersson Date: Sun, 3 Jul 2016 13:49:55 +0200 Subject: PRINCE: Correct search path to voices/databank.ptc At least in my copy, the voices directory is on the same level as the other directories. (Though the whole thing is inside a directory called "data", so maybe that's where that came from?) --- engines/prince/prince.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'engines/prince/prince.cpp') diff --git a/engines/prince/prince.cpp b/engines/prince/prince.cpp index a1386c6b16..e220f473c8 100644 --- a/engines/prince/prince.cpp +++ b/engines/prince/prince.cpp @@ -226,8 +226,8 @@ void PrinceEngine::init() { error("Can't open all/databank.ptc"); PtcArchive *voices = new PtcArchive(); - if (!voices->open("data/voices/databank.ptc")) - error("Can't open data/voices/databank.ptc"); + if (!voices->open("voices/databank.ptc")) + error("Can't open voices/databank.ptc"); PtcArchive *sound = new PtcArchive(); if (!sound->open("sound/databank.ptc")) -- cgit v1.2.3