diff options
author | Joost Peters | 2003-03-09 00:50:02 +0000 |
---|---|---|
committer | Joost Peters | 2003-03-09 00:50:02 +0000 |
commit | 85176a81565c1f27b85f209a10116857a582fd6d (patch) | |
tree | 084cf96a297d45252de1e5d943261bf2c363a5c0 /sky | |
parent | f2cc6a3d7dd41e14d73c15d31f3fd1f5ebbd7b39 (diff) | |
download | scummvm-rg350-85176a81565c1f27b85f209a10116857a582fd6d.tar.gz scummvm-rg350-85176a81565c1f27b85f209a10116857a582fd6d.tar.bz2 scummvm-rg350-85176a81565c1f27b85f209a10116857a582fd6d.zip |
Floppy demo crash fix, now shouldn't crash on any BASS version
svn-id: r6782
Diffstat (limited to 'sky')
-rw-r--r-- | sky/sky.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sky/sky.cpp b/sky/sky.cpp index af60c7f494..a390197cc0 100644 --- a/sky/sky.cpp +++ b/sky/sky.cpp @@ -83,7 +83,8 @@ void SkyState::go() { _dump_file = stdout; initialise(); - intro(); + if (!_isDemo) + intro(); while (1) { delay(100); |