TM —
German is really bad with GetKeyNameText, for instance "Numpad *" and "Numpad /" keys both return …
So I've been looking into the auto indent and trying to figure out how it works, however I'm still…
Aha, thanks. Yeah its not the biggest issue, its just that all my code is indented that way (thre…
Thanks Cranky, I've updated the original post to use GetAsyncKeyState. Can you tell me which langu…
I can't remember all the details of what was an issue in this conversation but I'll describe the c…
There isn't any notification on the site yet. You can use to get a list of all recent posts or us…
And the people that use CRTP are the ones that don't want to have anything to do with the virtua…
this code is just an edited version of the code casey showed in the stream and it is supposed to s…
"Essential Mathematics for Games and Interactive Applications: A Programmer's Guide" (James M. Van…
What are your references when writing matrix and quaternion code as far as the math go? I often sp…
Thank you for the long thoughtful comment... I just realized that i might not get notifications wh…
Languages like rust typically during compilation have very slow constant part due to how they are …
I thought the purpose of CRTP and other template tricks are to utterly and completely butcher comp…
Great article, thanks ever so much for this. I am working on an open source remapping application …
Has this changed? Just started using 4Coder and I'm used to 3x Space Tabs. edit: Would also be nic…
That's because in "debug" mode typically build system doesn't turn on compiler optimizations to ma…
nlives —
yes, I got it to work, but have to run in release mode. for it to fast, in debug its very slow, I …
Thanks both :) I think that the combination of a default parameter for when it doesn't matter, and…
Then interpret the data there according to what type another_member is. Follow pointer as needed.…
I have an allocator system which I use everywhere in my C and C++ code. I store the allocators in…
So the name only has to live within the function, but the function is called often enough for allo…
I am implementing allocators in my program. I use C++ (But not so much 'modern' c++). I have imple…
Because in C the array variable is not a pointer. So taking address of will not give you pointer t…
Italo —
initGfx(&textures, &spriteText, screenSurface);[/code] On GDB, if I print (*sprites) when inside…
TM —
I think the sync code won't work as expected. I remember doing something similar for resetting key…
This post is meant to provide a general overview of the code structure to contextualize later info…
This may be stating the obvious somewhat but in "var.member.another_member" the "var" should be a …
Except the entire point of crtp is to avoid having any virtual functions in the first place. I fee…
Yes, you need to call stbte_mouse_button with 5th argument set to 0 ("false") when mouse button is…
There is a way in C++ from a base class, which inherited class it is. Whenever a class in C++ has …