diff options
author | Lars Persson | 2005-06-21 22:08:21 +0000 |
---|---|---|
committer | Lars Persson | 2005-06-21 22:08:21 +0000 |
commit | 1c69696a9a8878971c4fa925b074498dab757857 (patch) | |
tree | d8f4f2cfea1a3e01bb7f5f5c58fb812d8029ca96 /backends | |
parent | 4564f0d3bf0d40f5a2ca125df0682969adc8431c (diff) | |
download | scummvm-rg350-1c69696a9a8878971c4fa925b074498dab757857.tar.gz scummvm-rg350-1c69696a9a8878971c4fa925b074498dab757857.tar.bz2 scummvm-rg350-1c69696a9a8878971c4fa925b074498dab757857.zip |
Patches needed to build for SYMBIAN32 WINS/GCC added.
Test built for Symbian and run on P910i without any major problems.
Test built for MSVC6. Changed parts seems to compile ok but there are some problems with MSVC6 and some of the targets which the EPOC build does n't support (KYRA,SAGA).
svn-id: r18430
Diffstat (limited to 'backends')
-rw-r--r-- | backends/intern.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/backends/intern.h b/backends/intern.h index 56b78d14c8..5b8f712ee1 100644 --- a/backends/intern.h +++ b/backends/intern.h @@ -37,12 +37,15 @@ extern OSystem *OSystem_MAC_create(int gfx_mode, bool full_screen); extern OSystem *OSystem_GP32_create(); extern OSystem *OSystem_PALMOS_create(); extern OSystem *OSystem_PS2_create(); +extern OSystem *OSystem_SymbianOS_create(); #ifdef _WIN32_WCE #define SAMPLES_PER_SEC 22050 #define SAMPLES_PER_SEC_OLD 11025 #define SAMPLES_PER_SEC_NEW 22050 +#elif defined(__SYMBIAN32__) +#define SAMPLES_PER_SEC 16000 #elif defined(__PLAYSTATION2__) #define SAMPLES_PER_SEC 48000 // the SPU can't handle anything else #else |