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…
ReadFile will not stop at \r\n. It will read up to N bytes you ask, or stop earlier if there is no…
ReadFile will not stop at \r\n. It will read up to N bytes you ask, or stop earlier if there is no…
The ReadFile function takes in a buffer, and usually, when I actually read a file I would know the…
RemedyBG 0.4.0.3 is now available for download on itch.io and includes the following improvements …
Evaluating an expression and returning the result is possible but is not something that is ready t…