Hi guys,
I was wondering if anyone can help with this problem I have?
I am trying to fade my screen with opengl Alpha and fade the volume of my music
at the same time but I would like them both to finish at the same time.
Here is my code from my main loop.
If KeyDown(KEY_ESCAPE) Or exitprog Then
exitprog = True
If alpha > 0.7 And vlevel > 0 Then vlevel:-1; BASS_SetVolume(vlevel)
fadescreen()
End If
This is BlitzMax code, Thanks for any help.