diff options
author | Johannes Schickel | 2014-06-22 18:23:05 +0200 |
---|---|---|
committer | Johannes Schickel | 2014-06-22 18:23:05 +0200 |
commit | e80bdfc5b4f20d330637acb874466569e59eb6ea (patch) | |
tree | 5586ac32cb3ff23e82d7624eb630aecc30c50349 | |
parent | cd306f194c7c052b465f5fefc249d52e8386a782 (diff) | |
download | scummvm-rg350-e80bdfc5b4f20d330637acb874466569e59eb6ea.tar.gz scummvm-rg350-e80bdfc5b4f20d330637acb874466569e59eb6ea.tar.bz2 scummvm-rg350-e80bdfc5b4f20d330637acb874466569e59eb6ea.zip |
PS3: Default to 44kHz sound output.
-rw-r--r-- | backends/mixer/sdl13/sdl13-mixer.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/backends/mixer/sdl13/sdl13-mixer.cpp b/backends/mixer/sdl13/sdl13-mixer.cpp index f9894a6f91..dc38242bde 100644 --- a/backends/mixer/sdl13/sdl13-mixer.cpp +++ b/backends/mixer/sdl13/sdl13-mixer.cpp @@ -33,9 +33,8 @@ #ifdef GP2X #define SAMPLES_PER_SEC 11025 #else -#define SAMPLES_PER_SEC 22050 +#define SAMPLES_PER_SEC 44100 #endif -//#define SAMPLES_PER_SEC 44100 Sdl13MixerManager::Sdl13MixerManager() : |