QTfrontend/SDLs.cpp
changeset 2192 4763a778c033
parent 2191 20c62f787a4d
child 2210 1cb7118a77dd
equal deleted inserted replaced
2191:20c62f787a4d 2192:4763a778c033
    67 	openal_fadein(music, 50);
    67 	openal_fadein(music, 50);
    68 }
    68 }
    69 
    69 
    70 void SDLInteraction::StopMusic()
    70 void SDLInteraction::StopMusic()
    71 {
    71 {
    72 	openal_fadeout(music, 50);
    72 	if (music >= 0) openal_fadeout(music, 50);
    73 }
    73 }