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
Or make Casey add _snprintf_s functions for non-MSVC platform: 1 2 3 4 5 6 7 8 9 10 11 1…
»
Mārtiņš Možeiko
The sound code Casey wrote is not final. Couple people on stream and forum have already mentioned…
»
Kim Jørgensen
Thank you for the help :) Now we only need to get rid of _snprintf_s /Kim
»
Jim R. Didriksen
Are you on a Laptop and either running other software in the background or have you changed the P…
»
Connor
I'm back with another sound issue, although this one is a lot different. I was following along wi…
»
Tim
Ah, thank you. It works! This community is really fast and helpful.
»
BrokenOpCode
They are new warnings generated in VS2015. HMH uses VS2013. For a quick fix you can turn off tho…
»
Mārtiņš Možeiko
Casey is using Visual Studio 2013. VS2015 compiler changed a bit and is finding more warnings and…
»
Timothy McCarthy
If a generated Win32 app works I wouldn't think "hello world" code would freeze the system either…
»
Tim
Hello All, I got everything set up and working with day 017, but now fast forward a bit and the …
»
Mārtiņš Možeiko
I seriously doubt you can configure project so incorrectly that whole VS GUI will freeze and beco…
»
Timothy McCarthy
Start with the basics. Create a generic Win32 project and let AppWizard generate all the files a…
»
Mārtiņš Možeiko
Well I think that means VS can not decide what to debug native or managed code... Anyways, I'm no…
»
Rosebud
I attempted to attach to the process and "break all" but got the following call stack (nothing wa…
»
Mārtiņš Možeiko
That's a debug output from debugger itself which doesn't help much. You need to interrupt proces…
»
Rosebud
I do not have multiple monitors, but I double checked and did not see any additional windows. I a…
»
Mārtiņš Možeiko
That's a strange issue. Do you have multiple monitors? Maybe VS is showing you popup somewhere wh…
»
Rosebud
The entire application (including GUI) is frozen. I cannot click anything, that is correct.
»
Mārtiņš Možeiko
What do you mean by "Visual Studio freezes"? Can you access any menu in IDE? Or is all the GUI fr…
»
Rosebud
Hello everyone, I just started the "Intro to C" video and am having issues with either Visual St…
»
elle
Because this came up numerous times during HH, I read the spec and want to share my findings. ;) …
»
Mārtiņš Možeiko
Zero-cost model for exceptions means that there is no additional code or performance penalty when…
»
Goobley
Pointers to member functions can certainly be a little tricky however with C++11 and a mix of tem…
»
Wesley Robb
Another issue with C++ constructors is that you cannot return stuff from them. To fail a construc…
»
Dale Kim
Maybe we should start a list or a separate thread for organizing meetups before and after the con…
»
Brendon
Thanks, I guess I missed the brackets. I thought he was incrementing it by 1 u8, not 1 asset_mem…
»
Bryan Taylor
"Block" points to the header struct for the block -- which we use to track the size for freeing l…
»
Mārtiņš Možeiko
If I remember correctly then that is because asset_memory_block is stored in memroy just before t…
»
Mattie
Block is actually just the header for the following free space, not the free space itself. "Block…
»
Brendon
Why isn't it just "Block", why the extra "+ 1"? Isn't Block the thing you want to return? Here …
»