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
So what is windows error, GetLastError() value or @err in debugger?
»
ThadeuMelo
I meant that echo "WAIT > lock.tmp" is working and there is supose to be a lock.tmp file. I a…
»
Allen Webster
Well one of my questions is "why do we have to guess?". I mean what do you gain from making the …
»
Mattie
I haven't watched 303 yet, but here's an example of how you can get a cycle with non-intersecting…
»
Allen Webster
I have seen a few episodes now working on the sprite sorting problem, and now the more I think ab…
»
Marius Adaškevičius
Just a couple of notes for Casey in case he has the time to see them here: 1. VerifyBuffer is ca…
»
Mārtiņš Možeiko
What do you mean by "lock files are created every time"? If you do "echo >file" then that is s…
»
ThadeuMelo
Yep, the problem is with the lock file. 1GetFileAttributesEx(...) fails to find "lock.tmp" when…
»
ThadeuMelo
It crashes right at the call for UpdateandRender. Game.UpdateAndRender(&Thread, &GameMem…
»
ratchetfreak
As for designing the the actual machine code: I know that the opcode is separated in some chunks …
»
Mārtiņš Možeiko
When VS shows error then check out debugger to understand what is wrong. What line code stopped? …
»
ThadeuMelo
Hello friends. I´m geting a crashing and this message from VS whenever I compile the code and th…
»
Mārtiņš Možeiko
While thinking like this from software point of view is nothing wrong, you really need to have ha…
»
Scott Hunt
All thank you for the quick replies and detailed responses, it is much appreciated. It's clear no…
»
ratchetfreak
jon http://pcwalton.github.io/blog/20...iew-of-memory-management-in-rust/ Note that, at this l…
»
Jack Mott
almost every time you use a garbage collected application you are also using a JITted/runtime lan…
»
Jonathan Blow
Most software seems to be very slow and quite laggy compared to what a well-optimized version mig…
»
Jonathan Blow
I am curious about the hinted third option after manual memory management and garbage collection …
»
Glamhoth
Yes, exactly, I was so sleepy that I missed #include before #define. Thanks!
»
ratchetfreak
As a bit of a thought exercise I started wondering what the new design of machine language would …
»
ratchetfreak
cmuratori Well, I am at least pretty sure that we will look back on garbage collection as a silly…
»
Mārtiņš Možeiko
Make sure you understand that these two expressions are equal in C: 1 2 3 4a[5] *(a+5) *(5+a) 5[a…
»
Casey Muratori
Well, I am at least pretty sure that we will look back on garbage collection as a silly idea, lik…
»
Casey Muratori
Have you #define'd internal? Internal is just a #define in the Handmade Hero codebase to be "sta…
»
Glamhoth
Hey, I have problem when including files. When I declare function as a internal then compiler thr…
»
Glamhoth
Hey, I have problem when including files. When I declare function as a internal then compiler thr…
»
Simon Anciaux
You can check handmadehero.org and @handmade_hero. The site generally has a timer to the next str…
»
Maxim Zaks
Hi, almost four years ago I was hired by a company to make a mobile simulation game for iOS (in …
»
Simon Anciaux
Pointer arithmetic works on the size of type pointed (not the size of the pointer). Meaning if yo…
»
ratchetfreak
When you add an int to a pointer the int is automatically multiplied with the sizeof the type the…
»