Charles Waldner
Charles Waldner
A fixed size buffer of a typedef of a primitive generates improperly: C ``` typedef uint64_t ecs_id_t; typedef struct ecs_bulk_desc_t { ecs_id_t ids[32]; } ``` C# ``` public readonly partial...
This audio module implementation was written with OpenAL in mind. I can add an OpenAL implementation to this PR soon if preferred, or I can open a separate PR if...
In `componentWillUnmount`, `window.removeEventListener(this.onResize)` should be `window.removeEventListener('resize', this.onResize)`
After leaving emacs via Evil's `:q`, the cursor does not revert either its color or shape. This can be reproduced via `:q` or `pkill emacs` from another terminal. I'm using...
I'd like to make the boxart view consistent with others. The main challenge here is that boxart size can often vary, even on the same platform. A few solutions come...
When attempting to deserialize an int to a float, yyjson appears to return 0. eg `"health": 100 /* vs */ "health": 100.0`. The former will return 0 when calling `cf_json_get_float`...
This is my first stab at an aabb grid I made while using CF. Please give critical feedback. Feelings won't get hurt. 😅
`:YcmGenerateConfig` will prompt to overwrite, but will return 1 immediately when in NeoVim. Is this expected behavior?
Passing `C:/Users/waldnercharles` to `cf_path_top_directory` appears to return `C:/Use`. I believe this is because we should be calling `char* s = sdup(path + at);` instead of `char* s = sdup(path);`, but...