From e1dc8452bd3d3d5e3de49d3de92c3c86cef79fa2 Mon Sep 17 00:00:00 2001 From: Fabio Battaglia Date: Sun, 11 Oct 2009 22:20:58 +0000 Subject: sword1: fix psx demo startup svn-id: r44951 --- engines/sword1/music.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'engines') diff --git a/engines/sword1/music.cpp b/engines/sword1/music.cpp index 352cc11043..77c44a3aa6 100644 --- a/engines/sword1/music.cpp +++ b/engines/sword1/music.cpp @@ -285,7 +285,7 @@ bool MusicHandle::playPSX(uint16 id, bool loop) { tableFile.close(); - if ((size != 0) && (size != 0xffffffff)) { + if ((size != 0) && (size != 0xffffffff) && ((offset + size) <= _file.size())) { _file.seek(offset, SEEK_SET); _audioSource = new Audio::VagStream(_file.readStream(size), loop); fadeUp(); -- cgit v1.2.3