diff options
author | Johannes Schickel | 2014-06-22 18:22:50 +0200 |
---|---|---|
committer | Johannes Schickel | 2014-06-22 18:22:50 +0200 |
commit | cd306f194c7c052b465f5fefc249d52e8386a782 (patch) | |
tree | fb499be585149d9c4a4f41a7f046da122dbdb0ea /backends/mixer | |
parent | 2d9d23adde3505946aab61d187c91f04b69c7583 (diff) | |
download | scummvm-rg350-cd306f194c7c052b465f5fefc249d52e8386a782.tar.gz scummvm-rg350-cd306f194c7c052b465f5fefc249d52e8386a782.tar.bz2 scummvm-rg350-cd306f194c7c052b465f5fefc249d52e8386a782.zip |
SDL: Default to 44kHz sound output.
Diffstat (limited to 'backends/mixer')
-rw-r--r-- | backends/mixer/sdl/sdl-mixer.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/backends/mixer/sdl/sdl-mixer.cpp b/backends/mixer/sdl/sdl-mixer.cpp index 7c709e91a3..e3b15b8c59 100644 --- a/backends/mixer/sdl/sdl-mixer.cpp +++ b/backends/mixer/sdl/sdl-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 SdlMixerManager::SdlMixerManager() : |