Sage Hane

Results 34 comments of Sage Hane

@Yerdun, care checking https://github.com/raysan5/raylib/pull/4393/commits/3e7b5a0bf40096acc12aca794a576e7af5e60dde? I "fixed" the situation by making `-Dconfig` take a `[]const []const u8` instead of a `[]const u8`. One of the motivations being that it's super annoying...

Okay so, the main motivation for moving `src/build.zig` was to simplify the logic such that it would hopefully be easier to maintain the file. I am strongly in favour of...

>The only thing I'd do differently is use NOTEs instead of TODOs, since I think that tag more accurately describes your comments. Sure, my coding conventions might look weird to...

@raysan5, yes, please keep it open. I do plan to merge `src/build.zig` as some use-cases are still broken. Unless you prefer me making a new PR just for the sake...

I think this is ready for review. I got all the bug-reproduction repos working with Zig versions 0.12.1, 0.13.0, and the master release of Zig. --- In the meanwhile, I...

Never heard of that, but how does that explain stuff like the order of: - `00a` -> `000`, `0a` -> `00`, `0` -> `a` - `000000` -> `00` -> `0000`...

Sorry for going off-topic but I found it interesting that natural sort in the C implementation above seem to be treating 0s as something with value. In that `0 !=...

Welp, I find it inconsistent that the C implementation would presumably sort something like: ``` 01 001 0001 1 ``` I guess the takeaway is that natural sorting is hard...

>Additional ordering (e.g. between `0a` and `00a`) should be possible, but it requires a second pass and complicates the algorithm. I feel like it's not worth it because most users...

In regards to the current Zig build system, there's currently no way to undefine a macro so it's currently impossible to disable something like `SUPPORT_FILEFORMAT_PNG`. I was thinking if it...