Hi all, Once I've got to the first search result, how do I keep searching to go to the next match?…
Thanks for your concerns. Rather than go point-by-point, I just want to try and explain more of th…
Once again, the following will sound negative, but my intention is only to give feedback so that t…
Hey there, Handmade Network. Since you’re reading this on the website, you may have noticed that…
Thanks it worked great. Sorry for late reply.
This is meant to be a list of organized topics for everyone who wants to include cross-platform te…
I just thought that the pseudo code I wrote wouldn't do what I expected because there are two loop…
Ok thanks I will try out changes. Also 24 was just a number I was trying out to see if it made any…
When asking some issue like this, it would help to have a zip with either everything we need to co…
Yes hello all. I'm having a problems with my collisions in my demo I'm making. Sometimes the playe…
RemedyBG 0.4.0.4 is now available for download from itch.io with the following new features and bu…
RGFW RGFW is a lightweight single-header library that handles window creation and management, inclu…
On the handmade discord, x13pixels is investigating issues with large pdb file (> 4Gio). They were…
Hi there ! I was actually lazy to post that but the same happened to me. What version of Remedy ar…
Is there any way to declare that a thread-local variable is also exported/imported to/from another…
In the official example: (raylib [textures] example - Sprite animation) the way it is choosen as f…
Hi! RemedyBG crashes when it tries to open a (large) Unreal project. The progress stops when the U…
It's been three months and finally version 0.6.0 is here! C3 was on a monthly update cycle, so wha…
Jens —
Yes - originally I was intending on only having it for the GUI but I felt having core features lik…
mrcorl —
gotcha. if it makes it any easier, all I would really need is the evaluated result as an unformatt…
So I've been testing ReadFile's behavior with other input types like pipes and files and noticed a…
You can read how TLS works more in these series of articles (for Windows): So I finally finished …
Then your ReadFile will read full buffer. And rest of the input you'll get on next call to ReadFil…
Before disabling line buffering, I want to know what happens if the user's input is bigger than my …
Simply disable line buffering on input handle and do buffering yourself. Have whatever size buffer…
So let's say my internal buffer size was 4 bytes, and the user types something like 8 bytes and pr…
Ah, you're right. It has special behavior when it is reading from console. Just be aware that user…