Sorry I was testing on an older version that was using version 1 of the project system.
I have t…
How to make things that people want and measure how good things are can be learnt in usability co…
I tried to pass in:
- build target: LongLib_Windows.c
- output directory: build
- binary output: …
Thanks for addressing those issues.
You can have a look at 4coder_project_commands.cpp to see what it does and require.
- You need t…
Jens —
The GUI version has gotten a couple of new features, some still being worked on.
Tree view is no…
I don't know how to use the setup_new_project command. What arguments should I pass into it?
Ohh, very detailed! Big thx you! Saved!!
I have been making progress on several fronts with and , but in this post I wanted to focus on a…
Jens —
With the optimizations done "good enough for now", I moved on to fix the crash.
Now, I did test …
Jens —
As I started writing this I noticed it appears like I have a lot to write, so I split it to sever…
That is cool, thanks for the walkthrough of your debug process!
Before reading my answer you might want to try to figure it out for yourself as it's a good exerc…
Hey folks,
After day 146 I have noticed the audio playing gets super loud and clipped if the wi…
These two if statements do different things. First one calls function when pointer is NOT null. S…
poe —
Bit of a bump, but found this thread on Google. For me personally, I have found just using 0 as …
Bobby —
marccYou can printf 4Coder strings like this:
1String_Const_u8 cmd = push_stringf(scratch, "…
That is exactly what you should do. Again - watch Handmade Hero video where this is explained. Th…
You can printf 4Coder strings like this:
1String_Const_u8 cmd = push_stringf(scratch, "%.*s&…
I think the issue is that you use non zero terminated strings in push_stringf.
vars_string_from_v…
One easy hack that I've just found is assigned wasDown = isDown at the start of every frame and t…
Bobby —
Salutations,
I've been trying to use the file path of the active buffer as a parameter for my bu…
I'd add that some of (most of) those systems might seems complex at first but once you've work on…
Windows only posts messages to the message queue when it needs to. It doesn't update at a (fixed …
This is exactly like my code (except that my code has the windowProc inside the game loop, and I …
Do not use bools in such way. Do not use repeat setting, unless you're implementing text input.
K…
I had 2 bools (isDown and wasDown) and only updated it in the PeekMessage loop. So because Window…
Miles —
It's what decades of game engine programming experience looks like. And he's not doing everything…
Terans —
I'm at day 449 and Casey just wrote a layout system to create orphanages. It worked the first tim…
What do you mean with you cannot check in game loop?
When windows delivers message you remember w…