turned on mixing interpolation in the SDL version too
authorJohn Tsiombikas <nuclear@mutantstargoat.com>
Tue, 20 Sep 2016 06:18:12 +0000 (09:18 +0300)
committerJohn Tsiombikas <nuclear@mutantstargoat.com>
Tue, 20 Sep 2016 06:18:12 +0000 (09:18 +0300)
src/sdl/music.c

index e194764..8e8f7cf 100644 (file)
@@ -10,7 +10,7 @@ static int init(void)
        MikMod_RegisterAllDrivers();
        MikMod_RegisterAllLoaders();
 
-       md_mode |= DMODE_SOFT_MUSIC;
+       md_mode |= DMODE_SOFT_MUSIC | DMODE_16BITS | DMODE_STEREO | DMODE_INTERP;
        if(MikMod_Init("") != 0) {
                fprintf(stderr, "mikmod init failed: %s\n",
                                MikMod_strerror(MikMod_errno));