QTfrontend/SDLs.cpp
changeset 2392 a55dbef5cf31
parent 2294 2e6ffb3ef304
child 2399 ddde0ac1472b
--- a/QTfrontend/SDLs.cpp	Tue Sep 22 21:00:39 2009 +0000
+++ b/QTfrontend/SDLs.cpp	Tue Sep 22 21:58:08 2009 +0000
@@ -56,15 +56,16 @@
 	return result;
 }
 
-void SDLInteraction::StartMusic()
+void SDLInteraction::StartMusic(bool hardware)
 {
 	if (music < 0) {
-	    openal_init(5);
+		openal_init(hardware ? 1 : 0, 5);
 		music = openal_loadfile(QString(datadir->absolutePath() + "/Music/main theme.ogg").toLocal8Bit().constData());
 		openal_toggleloop(music);
+	
 	}
 	openal_setvolume(music, 60);
-	openal_fadein(music, 25);
+	openal_fadein(music, 30);
 }
 
 void SDLInteraction::StopMusic()