aboutsummaryrefslogtreecommitdiff
path: root/engines/scumm/player_sid.cpp
diff options
context:
space:
mode:
authorNeil Millstone2010-02-26 17:42:40 +0000
committerNeil Millstone2010-02-26 17:42:40 +0000
commit277b3078bcd1f655ad54504959091047a496be6c (patch)
treebb87732361d6eacdd50e2ebfd488ed9766cdf85a /engines/scumm/player_sid.cpp
parent4a8ab4b075a186ce70c441ee0ceb3f6d5019d948 (diff)
downloadscummvm-rg350-277b3078bcd1f655ad54504959091047a496be6c.tar.gz
scummvm-rg350-277b3078bcd1f655ad54504959091047a496be6c.tar.bz2
scummvm-rg350-277b3078bcd1f655ad54504959091047a496be6c.zip
SID: Adding DISABLE_SID option, as SID player embiggens binary by a large amount. This is a problem for the DS port.
svn-id: r48137
Diffstat (limited to 'engines/scumm/player_sid.cpp')
-rw-r--r--engines/scumm/player_sid.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/engines/scumm/player_sid.cpp b/engines/scumm/player_sid.cpp
index 0d7bb380b9..a17343b4a4 100644
--- a/engines/scumm/player_sid.cpp
+++ b/engines/scumm/player_sid.cpp
@@ -23,6 +23,8 @@
*
*/
+#ifndef DISABLE_SID
+
#include "engines/engine.h"
#include "scumm/player_sid.h"
#include "scumm/scumm.h"
@@ -1389,3 +1391,5 @@ int Player_SID::getMusicTimer() {
}
} // End of namespace Scumm
+
+#endif