Anonymous Maarten

Results 757 comments of Anonymous Maarten

Awesome! We're entering SDL headers again. I'm seeing an error with inline assembly [here](https://github.com/libsdl-org/SDL/blob/49134ecf25517828306a35d24e1b84db9b1f2fb6/include/SDL3/SDL_endian.h#L253-L257): ``` /home/maarten/projects/SDL/include/SDL3/SDL_endian.h:255:3: error C0680: identifier '__asm__' not declared 255 | __asm__("xchgb %b0,%h0": "=abcd"(x):"0"(x)); | ~~~~~~~ 1...

Awesome again! cake can now parse the SDL3 headers 🥳 ! We're now entering SDL's embedded uclibc, which is used to provide math functions not provided by the host c...

The built-in math sources are already c89 compatible, so it would make sense to keep them as intact as possible :)

#532 fixes this Reproducer: 1. Start a race 2. Hide pratcam 3. Finish race 4. Start a new race 5. Finish race 6. Show pratcam.... CRASH

It's not as convenient as a cli option, but dethrace currently reads the `DETHRACE_ROOT_DIR` environment variable.

Thanks! The main branch is now capable to build all release artifacts: https://github.com/madebr/SDL_net/actions/runs/20858967594

Thanks for the reproducer! I bisected it back to ca1ef76e7f2beef062394b2b16c2d5149c668c5f (using [this BRender commit](https://github.com/dethrace-labs/BRender-v1.3.2/commit/fa8b5a90dff141f6e7e1f4f146ac593779fe6cea)) Uncommenting these lines, added in the aforementioned commit, I no longer get a crash: ```patch ---...