qwertyquerty

Results 11 comments of qwertyquerty

This really should be completed, considering it's such a big issue, and it's been open for so long.

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.

```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 ```