Coarse Rosinflower

Results 26 comments of Coarse Rosinflower

If your mod `A` depends on mod `B` explicitly, `B` will be loaded first anyway so that `A` can be loaded.

Not technically, no. However, if mod `A` loads first, it should load `B` as one of the first things it does, then carry out loading `A`.

That's wild. @Phoupraw, why do you specifically need `B` to load its initialiser first? It seems like (at least in this case) it would be better if the mods were...

Are you sure that's a problem with the plugin and not a problem with OBS itself?

Perhaps a more intuitive syntax like `z ...` and `z ./..` being equivalent, then `z ....` being `z ../..` should be available as well.

Why do we use EDG? Is there a way to use GCC's lexer/parser, since it already supports everything?

Segments actually disappear a lot. Along with the timer. For simple things like opening the settings window. Ubuntu 24.04.2 LTS with GNOME 48 on X11

Simple fix: add `#pragma once` to the top [of the renderer] or wrap like this: ```c #ifndef _CLAY_RENDERER #define _CLAY_RENDERER /* ... */ #endif

I mean to the top of the renderer file, the one you're including multiple times. Both methods have worked for me, and are standard to most header files. Why are...

I think the `-Wmissing-braces` is a bug in GCC. I got that too, and simply ignoring it makes the app work fine.