qwertyquerty
qwertyquerty
Is this ever going to be continued?
This really should be completed, considering it's such a big issue, and it's been open for so long.
Same problem here too
Update on this?
Feel free to PR and i'll look into it further
I would have done it like this, but I believe when I tried, I never got a response.
This one has me stumped, as changing your values to integers made it work fine.
Not at this time no
```python import pygame as pg pg.mixer.init() screen = pg.display.set_mode((100, 100)) sfx = pg.mixer.Sound("sound.wav") channel = pg.mixer.Channel(1) channel.set_source_location(90, 200) channel.play(sfx) channel.queue(sfx) while True: pass ```