aboutsummaryrefslogtreecommitdiff
path: root/common/system.h
diff options
context:
space:
mode:
authorNicolas Bacca2002-11-19 08:05:48 +0000
committerNicolas Bacca2002-11-19 08:05:48 +0000
commit80d32ec5e1b075ff655ccf1f33294cd1f6fbfcec (patch)
treed21195912acd50b9901568c49e9353b690cf95f9 /common/system.h
parent1a97719ae51eef51536f088cd334503a3c4e5d75 (diff)
downloadscummvm-rg350-80d32ec5e1b075ff655ccf1f33294cd1f6fbfcec.tar.gz
scummvm-rg350-80d32ec5e1b075ff655ccf1f33294cd1f6fbfcec.tar.bz2
scummvm-rg350-80d32ec5e1b075ff655ccf1f33294cd1f6fbfcec.zip
Small Windows CE changes : detect old WinCE as NONSTANDARD_PORT, change __cdecl for these systems, add 2 sampling rates for WinCE due to problems with Smush mixer in 11 kHz
svn-id: r5604
Diffstat (limited to 'common/system.h')
-rw-r--r--common/system.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/common/system.h b/common/system.h
index d5057f6bfd..5cae9b691d 100644
--- a/common/system.h
+++ b/common/system.h
@@ -208,7 +208,8 @@ enum {
enum {
#ifdef _WIN32_WCE
- SAMPLES_PER_SEC = 11025
+ SAMPLES_PER_SEC_OLD = 11025,
+ SAMPLES_PER_SEC_NEW = 22050
#else
SAMPLES_PER_SEC = 22050
#endif