I had this exact same problem, it's a bug in the old build.bat that was fixed in day 23 or 24. Yo…
We switched to using %random% on a later day, which may solve this problem... have you tried repl…
Dejan —
The latest Intel recommendations (seems to agree with the numbers everyone has posted):
"Beginni…
Even if I'm building with your build.bat file i get this. :(
And if it's the case that some pdb …
Hmm... how are you even getting a PDB file that is just a number? Are you building from the comm…
We will probably move some of the playback functionality up a bit once we have more than one plat…
Hello everyone,
I've followed this series on the youtubes and watched every video and coded my w…
It's semantically equivalent, and that may help with understanding.
This is an aside, but even a…
If your stdlib is any good, then it probably selects an algorithm based on the size, the architec…
Chris —
nxsy, that is really cool stuff. Have you ever done any similar low-level code for Wayland?
Makes sense, especially if the game code runs similarly on each platform. Guess I'm just used to …
Ah, yes, I was going to vote for a slight delay as well, but only because I'm already rather behi…
Without having looked at the website closely, I'm inclined to agree. Nonetheless, the fact that t…
Filip —
hrm. I'm sorry I just forgot the optimization flag.
Now the results seems more plausible:
1
2
…
Can you check assembly code for CopyWithSSENoCache function? Something isn't right there.
And you…
Filip —
FYI, I did a naïve port of your code to mac os x and did a run on my 2012 retina macbook pro. I g…
I'm leaving audio for last - it is the most code, and it is the thing I know the least about.
I'…
Tim —
Cool! It is easy for me to get sucked into doing one particular part of a program and easily forg…
Woah. This is cool! I started playing around with Xlib (actually I'm using CLX and following alon…
Oh. My. God. That is so freaking cool! Thanks for sharing this trick, I'm sure I'm not the only o…
Cort —
Speaking of the poor man's profiler, here's a neat trick for the Visual Studio debugger: if you a…
Anyone interested in tasklists and using EMACS should check out ORG-mode (which is built into ema…
As forewarned in the stream chat, my holiday project is to write an XCB (X protocol C-language Bi…
Ian —
There's no simple way to identify the return type and parameter types of the XInputGetState funct…
Sorry to revive this, I am stuck here as well.
Thanks to steelgolem and christianrohr and garlan…
Btw, you could look on switch statement as a series of comparisons and goto's, if that is easier …
EDIT: Overkill, explained much more succinctly above
Further reading:
http://msdn.microsoft.com…
Alternative would be to use if statement:
1
2
3
4if (Message==WM_SYSKEYDOWN || Message==WM_SYSKEY…
That's...the only way to do it that I know of?
The only alternative is to copy and paste the sam…
Oh, okay. We are catching all those cases in one case. Thanks. Also, can you tell what the reason…