diff options
author | Chris Apers | 2003-09-24 08:32:19 +0000 |
---|---|---|
committer | Chris Apers | 2003-09-24 08:32:19 +0000 |
commit | c8fbafda9a3f7e3cc40612e6fa2f450a5a6459ff (patch) | |
tree | 423cb902bbe32ab4cee3cd946117f542d4b4768a /scumm | |
parent | e18964e95a5b1c3cff793a85cdd0a1907f57517e (diff) | |
download | scummvm-rg350-c8fbafda9a3f7e3cc40612e6fa2f450a5a6459ff.tar.gz scummvm-rg350-c8fbafda9a3f7e3cc40612e6fa2f450a5a6459ff.tar.bz2 scummvm-rg350-c8fbafda9a3f7e3cc40612e6fa2f450a5a6459ff.zip |
Disable Palyer_V2A on PalmOS, since the source doesn't compile with it
svn-id: r10397
Diffstat (limited to 'scumm')
-rw-r--r-- | scumm/scummvm.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/scumm/scummvm.cpp b/scumm/scummvm.cpp index 6ca8325896..dd908be799 100644 --- a/scumm/scummvm.cpp +++ b/scumm/scummvm.cpp @@ -725,8 +725,10 @@ Scumm::Scumm (GameDetector *detector, OSystem *syst) _musicEngine = NULL; if (_features & GF_DIGI_IMUSE) { _musicEngine = _imuseDigital = new IMuseDigital(this); +#ifndef __PALM_OS__ } else if ((_features & GF_AMIGA) && (_version == 2)) { _musicEngine = _playerV2A = new Player_V2A(this); +#endif } else if ((_features & GF_AMIGA) && (_version == 3)) { _musicEngine = _playerV3A = new Player_V3A(this); } else if ((_features & GF_AMIGA) && (_version < 5)) { |