We are currently in the process of converting the website to the new design. Some pages, like this one, are still broken. We appreciate your patience.
Mārtiņš Možeiko
Here are few questions on MVC and answers from Casey on stream: https://hero.handmade.network/epi…
»
Flyingsand
mmozeiko Can you try omitting blitting part to screen? Just render to memory buffer and don't bli…
»
unfear
Hi, And about Model View Control on a game engine? Use MVC on entire project or only on the ga…
»
Alex Baines
Last update I left off mentioning my intentions for improving the help system, and early last mon…
»
bpunsky
I think that's a good call on the array removal, and I did figure out that you can already use im…
»
Anton Swifton
Free legal advice is not a very useful thing, but thanks for pointing out.
»
Ginger Bill
Thank you. That is a bug and thank you for telling me. I will try to fix this right away. Remo…
»
Taylor Robbins
Const Port version 1.2 is now finished! I added a 1.1 version to the bitbucket repository but the…
»
Taylor Robbins
The official Blog can be found at http://www.siltutorials.com/blog/
»
Taylor Robbins
This thread will act as an official update/changelog for Const Port. Icon: Description: Const …
»
Marc Costa
I knew about stdint.h, inttypes.h, stddef.h and limits.h. I've never looked into stdarg.h, so tha…
»
Mārtiņš Možeiko
Can you try omitting blitting part to screen? Just render to memory buffer and don't blit. This i…
»
Mārtiņš Možeiko
va_arg is actually in stdarg.h, not stdlib.h. That's a bug in stb_sprintf. And it is ok to use s…
»
Marc Costa
stb_printf includes stdarg.h and stdlib.h for va_args & friends. This will make it use the CR…
»
Flyingsand
mmozeiko Have you tried running code outside of debugger (Ctrl+F5), is timing still inconsistent?…
»
Mārtiņš Možeiko
Have you tried running code outside of debugger (Ctrl+F5), is timing still inconsistent?
»
Flyingsand
I recently finished writing the first pass of the Windows platform layer for a game side-project …
»
Neo Ar
For the month of June, we did the following: Read sections 1.7-1.8 of COAD [COAD 5] Learned how…
»
Todd
I'm currently doing some extensive research and work with the Portable Executable file format. I'…
»
David
I use Windows 7 Professional N. edit: I tried it on Windows 10 N and it's the same problem.
»
Mārtiņš Možeiko
If you need to use sprintf functionality without default MSVC runtime you can choose from multipl…
»
Allen Webster
That is unusual. It sounds like it didn't paint the screen on startup, and so you see white. Th…
»
David
Everytime I start 4coder the background is white. It takes about 5 sec. and it changes to normal.…
»
ZeroWalker
Ah, thanks for clarifying, i wasn't sure what it meant, so i kinda thought the underscore was use…
»
Mārtiņš Možeiko
This is perfectly fine. Structuring code in a way that some relatively isolated functionality is …
»
unfear
Hi, I try to compact more the code to functions, can I do a unique function to call a window? but…
»
bpunsky
Cool, thanks. I also realize now that the cost of copying the value in most cases is pretty minim…
»
Mārtiņš Možeiko
MSVC before VS2015 has _snprintf which is not compatible with C99 snprintf. It has some differenc…
»
ZeroWalker
Does snprintf and swprintf (the C standard, not the Windows standard) exist in msvcrt? I am not s…
»
Ginger Bill
You could just copy that value, modify that, then update it. That should technically work. Howev…
»