diff options
| author | James Brown | 2002-11-15 10:36:50 +0000 | 
|---|---|---|
| committer | James Brown | 2002-11-15 10:36:50 +0000 | 
| commit | f2f9f48faf3c1417daa2c473011feca59be6fee6 (patch) | |
| tree | 31139af1318a0ee8e019fb8f9fcea8215c8efa4c /scumm/imuse.cpp | |
| parent | 586c9ba08290e1cf0291ca1f221ca8bbd7547757 (diff) | |
| download | scummvm-rg350-f2f9f48faf3c1417daa2c473011feca59be6fee6.tar.gz scummvm-rg350-f2f9f48faf3c1417daa2c473011feca59be6fee6.tar.bz2 scummvm-rg350-f2f9f48faf3c1417daa2c473011feca59be6fee6.zip | |
Music tempo patch
svn-id: r5556
Diffstat (limited to 'scumm/imuse.cpp')
| -rw-r--r-- | scumm/imuse.cpp | 6 | 
1 files changed, 3 insertions, 3 deletions
| diff --git a/scumm/imuse.cpp b/scumm/imuse.cpp index c9bde30906..8a06d3b242 100644 --- a/scumm/imuse.cpp +++ b/scumm/imuse.cpp @@ -647,9 +647,9 @@ public:  	uint32 get_base_tempo() {  #ifdef _WIN32_WCE -		return 0x1F0000 * 2;				// Sampled down to 11 kHz +		return 0x1D9000 * 2;				// Sampled down to 11 kHz  #else	//_WIN32_WCE -		return 0x1F0000;						// Was: 0x1924E0; +		return 0x1D9000;  #endif //_WIN32_WCE  	} @@ -712,7 +712,7 @@ public:  	static int midi_driver_thread(void *param); -	uint32 get_base_tempo() { return 0x460000; } +	uint32 get_base_tempo() { return 0x4A0000; }  	byte get_hardware_type() { return 5; }  }; | 
