Sebastian Steinhauer

Results 8 comments of Sebastian Steinhauer

Thanks for contributing 😁 I will merge this soon.

You are totally right and I fixed this issue in my "better" gopher client and cgo replacement delve. Take a look here https://github.com/kieselsteini/delve I don't know if I really want...

Good to know that there is a conflict with other programs. Perhaps I should do some kind of survey to find a good name :)

Hmm seems like I have refactored the code and forgot to remove it. Thanks for the hint, I‘ll do that soon 👍

Hey....I was able to reproduce this on Windows 10 when IPv6 is available. The simplest fix is probably to change line 285 to hints.ai_family = AF_INET; This will limit the...

There is still an issue with the FPS limiter in line 1345 ```js var fps_limit = pJS.particles.fps_limit; ``` **Fix:** ```js var fps_limit = pJS.fps_limit; ```

As @nfries88 explained, this can be very helpful when you have a few "large" asset archives which you can simply map to memory and then just directly access the data....

I made a first attempt: [PR-10960](https://github.com/libsdl-org/SDL/pull/10960). It's my first try to contribute here ;)