diff options
Diffstat (limited to 'engines/scumm/he')
-rw-r--r-- | engines/scumm/he/sound_he.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/engines/scumm/he/sound_he.cpp b/engines/scumm/he/sound_he.cpp index 23224354c0..9a039b0008 100644 --- a/engines/scumm/he/sound_he.cpp +++ b/engines/scumm/he/sound_he.cpp @@ -652,7 +652,9 @@ void SoundHE::startHETalkSound(uint32 offset) { assert(_sfxFile); if (!_sfxFile->isOpen()) { - error("startHETalkSound: Speech file is not open"); + // This happens in the Pajama Sam's Lost & Found demo, on the + // main menu screen, so don't make it a fatal error. + warning("startHETalkSound: Speech file is not open"); return; } |