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.
Connor
Thanks for the information! That's what I needed to know! PS. I have noticed that you are answeri…
»
Mārtiņš Možeiko
DirectSound is based on C++ COM object model. This means having public abstract C++ class. And re…
»
Connor
I accidentally deleted the InitDirectSound function when converting the from .cpp to c from my fo…
»
Tim
Thank you! Installing Visual Studio Community (aka VC 14.0) fixed the problem. I am now calling t…
»
Timothy McCarthy
When you add the resource you don't specify a bitmap. You specify a custom resource. In my 32 bit…
»
Pumpkin Sauce
Sorry I wasn't clear. I DO have a 32bit image, made in gimp. But when I clicked add resource and …
»
Timothy McCarthy
Ah, I assumed you already had the 32bit image. You would load that image into the resource as a c…
»
Pumpkin Sauce
@RomulusTFM It's kinda funny because when I did that I typed Bitmap when they asked me the type a…
»
Timothy McCarthy
I would look into adding the image as a custom resource. You then would use the LoadResource func…
»
Pumpkin Sauce
cmuratori This would be a much better approach than trying to use the resource system because the…
»
Casey Muratori
Although it's not necessarily a good idea because some anti-virus software is stupid (OK, most an…
»
Pumpkin Sauce
This is more of a general question and not really related to handmade hero but I hope it's ok I'm…
»
Asaf Gartner
I plan on eating there on Thursday, and if it's as good as Casey says, probably again on Friday. …
»
AndrewJDR
It seems that many of us are going to miss the Campfire BBQ place at lunchtime on Friday since ou…
»
Miguel Lechón
They're actually staying at the Marriott. As far as I know, I'm the only one staying at the Green…
»
Timothy McCarthy
This is a C++ 11x change. It's a new initialization syntax...the details elude me at the present.…
»
Tim
Hello All, On Day 017 @ 1:34:00 we switch from: game_controller_input ZeroController = {}; …
»
Marius Adaškevičius
The only reason I brought that up is because I don't want to misrepresent their opinions since I'…
»
Jeroen van Rijn
Quite a few people are staying at the Green Tortoise.
»
Timothy McCarthy
Just to be clear and above board. I don't know either Jonathan or Casey (or anyone else in this …
»
Andrew Kelley
While we're on the topic of Handmade Con, any hotel recommendations? I tried AirBnB but the webs…
»
Marius Adaškevičius
RomulusTFM I haven't viewed any Jai streams so there is some speculation in this. What is meant b…
»
Mārtiņš Možeiko
Yes, only to larger sizes. But the cost is pretty much the same for signed and unsigned types. Ca…
»
Timothy McCarthy
I thought there was a cost to sign extension. Or is that only for larger size?
»
Mārtiņš Možeiko
RomulusTFM The advantage of such a natural value are that CPU can load and update the value quick…
»
Timothy McCarthy
I haven't viewed any Jai streams so there is some speculation in this. What is meant by "you don'…
»
Marius Adaškevičius
If I understand correctly the bigger problem here is the additional code since I doubt it would a…
»
Mārtiņš Možeiko
The difference is how many comparisons you need to do. For signed to you need to do: 1if (value &…
»
Marius Adaškevičius
If there is a bug in index calculation code is there a fundamental difference if that index is ne…
»
Andrew Chronister
In my own code, I use "unsigned" whenever I know for a fact that a negative number would be wrong…
»