diff options
author | Jochen Hoenicke | 2005-03-15 10:04:35 +0000 |
---|---|---|
committer | Jochen Hoenicke | 2005-03-15 10:04:35 +0000 |
commit | 402dd115eade0a59f2fb0647bad1e1de6f953f82 (patch) | |
tree | 43a242174b02a3429713250f483c6f30f2b6b55d | |
parent | adbd8f23e5af3fdbbe82e5f29983ede667068807 (diff) | |
download | scummvm-rg350-402dd115eade0a59f2fb0647bad1e1de6f953f82.tar.gz scummvm-rg350-402dd115eade0a59f2fb0647bad1e1de6f953f82.tar.bz2 scummvm-rg350-402dd115eade0a59f2fb0647bad1e1de6f953f82.zip |
Weakened the low pass filter (thanks to tbcarey who compared it with a real PCjr)
svn-id: r17154
-rw-r--r-- | scumm/player_v2.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scumm/player_v2.cpp b/scumm/player_v2.cpp index 1ff2e619fa..4643921602 100644 --- a/scumm/player_v2.cpp +++ b/scumm/player_v2.cpp @@ -31,8 +31,8 @@ namespace Scumm { #define FREQ_HZ 236 // Don't change! -#define SPK_DECAY 0xfa00 /* Depends on sample rate */ -#define PCJR_DECAY 0xf600 /* Depends on sample rate */ +#define SPK_DECAY 0xa000 /* Depends on sample rate */ +#define PCJR_DECAY 0xa000 /* Depends on sample rate */ #define FIXP_SHIFT 16 #define MAX_OUTPUT 0x7fff |