Hi, on free time just for fun I wrote this Slither-Like Game
Enjoy!
I don't know how to play Multiple sounds at same time.
(I mean to play even same sound with a slight delay)
I found a Module: "SoundManager" that on win-XP works like a charm
But on Vista it do not works
To Play a sound it's used my "MyPlaySound"
On vista I changed a little bit FreeBuffer Sub like this:
and it works a little better but not as good as on XP. If someone could help.
DownLoad ZIP
Enjoy!
I don't know how to play Multiple sounds at same time.
(I mean to play even same sound with a slight delay)
I found a Module: "SoundManager" that on win-XP works like a charm
But on Vista it do not works
To Play a sound it's used my "MyPlaySound"
On vista I changed a little bit FreeBuffer Sub like this:
Code:
' If Buffers(Index).status = BufferEmpty Then '''' On XP works perfectlty
If Buffers(Index).status <> BufferPlaying Then '''' On Vista a little better (it seems not not works CALLBACK)
DownLoad ZIP