Avahe Kellenberger

Results 74 comments of Avahe Kellenberger
trafficstars

Haven't entirely thought it through, but maybe just allowing an additional "field" for grep flags. E.g: `mpv %s:-i:.*\.mp4` Where -i is the case insensitivity flag

That sounds good to me 👍

Maybe off-topic, but why does Ryujinx not use system libraries? Or, is there a way to compile it to do so? I have SDL2 compiled to support the Gamecube Controller,...

Thanks, that worked. For some info if anyone else is looking to do this: - I found `libSDL2.so` in `/opt/ryujinx` - The GCC shows up as a joycon - Build...

It's just an install script you can read, download, and run. It's fine, doesn't need to be official.

Yes, please. This is very strange to see

I'm seeing my player (a dynamic body) sort of "sink" into a static body, then slowly being pushed out (when falling from some distance). I've tried both in pixel coordinates,...

Another game dev I know using chipmunk informed me that changing some of the `space` settings helps. Iterations to 16, slop to 0.001, and collisionBias to pow(0.5, 60.0) seem to...

I've found the issue, I believe. ```c static void Line(GPU_Renderer* renderer, GPU_Target* target, float x1, float y1, float x2, float y2, SDL_Color color) { float thickness = GetLineThickness(renderer); float t...