--- a/QTfrontend/SDLs.cpp Mon Jun 29 00:58:32 2009 +0000
+++ b/QTfrontend/SDLs.cpp Mon Jun 29 03:47:39 2009 +0000
@@ -26,7 +26,7 @@
music = -1;
SDL_Init(SDL_INIT_VIDEO);
- openal_init(50);
+ openal_init(40);
}
@@ -62,12 +62,12 @@
if (music < 0) {
music = openal_loadfile(QString(datadir->absolutePath() + "/Music/main theme.ogg").toLocal8Bit().constData());
openal_toggleloop(music);
- openal_setvolume(music,66);
- }
- openal_fadein(music, 50);
+ }
+ openal_setvolume(music, 60);
+ openal_fadein(music, 70);
}
void SDLInteraction::StopMusic()
{
- if (music >= 0) openal_fadeout(music, 50);
+ if (music >= 0) openal_fadeout(music, 70);
}