Recent content by henrym

  1. H

    C dislikes my char dictionary[300000][30] why?

    Heh, yeah. Pathogen: it would be best if you could post the actual compiler error(s), until then we're just guessing.
  2. H

    C dislikes my char dictionary[300000][30] why?

    malloc is ugly. I think the only reason the compiler is choking is because 3MB is too much for the stack. Allocating 3MB using malloc (or new) should work perfectly fine.
  3. H

    Check out these pictures!!!

    Those screens are excellent. Love the Charlies Angels one and the medic one.
  4. H

    omg alex

    Worse yet, those pics are from a leaked copy ;(
  5. H

    C++ Console Challenge

    What numbers did you input?
  6. H

    C++ Console Challenge

    a*b + c*d = n Assume that a*b and c*d both equal n/2 (n/2 + n/2 = n)... a = (n/2)/b c = (n/2)/d #include <iostream> using namespace std; int main(int argc, char**argv) { if (argc < 4) return 1; int b = atoi(argv[1]); int d = atoi(argv[2]); int n = atoi(argv[3])...
  7. H

    C++ Console Challenge

    Could you give a better explanation? From what I get, the user enters 3 numbers : x, y and n, producing: z*x + z*y = n Where you're trying to find z? But, that seems kinda too simple to me...
  8. H

    Node Graph out of date: REbuilding How do i get rid of this?

    If you don't distribute the graph, HL2 will just build it on the users machine. Like Dark Elf said, it doesn't make much difference either way.
  9. H

    I made a single player hl2 map, yippy! (pics, map d/l)

    Yep. HL2 is needed to be eligible to download the Source SDK (which includes Hammer, Model viewer and source code). Once you do get HL2, you'll be able to download and install the SDK through Steam.
  10. H

    Why did you buy Half-Life 2?

    Single player Playing user-made mods Creating mods CS:Source Graphics/Physics In that order. No.
  11. H

    Any idea on how to turn of windowed mode?

    It's in the Options. Options -> Video tab, there should be a drop down box to switch between Run in a Window and Fullscreen.
  12. H

    Half-Life 2 Update

    That part was soo much fun :) I assume the update was very small, if you opened up the Monitor window, it showed that HL2 had been updated back to 100%. I reckon the surprise will be HL2 Multiplayer myself, but then again it's been said that the SDK will contain a multiplayer example, so...
  13. H

    Apparently a patch is coming 11/24/04!

    Hmm, seems news is slow today. That would have been the Steam patch which was released a couple hours ago. Maybe it's not big enough of an update to warrant front page news though. Apparently not. Maybe the reason they are delaying this patch is so they can have fixes for both problems in...
  14. H

    Ugh! Need help!

    Hmm... Sorry dude, I can't help then. I just tried to reset mine as well (even went as far as removing the whole half-life 2 directory), to no avail. It seems that these settings must be re-written back into the .gcf. All I can think of is making sure you aren't setting anything else to...
  15. H

    Ugh! Need help!

    linking to hl2world isn't allowed (AFAIK, it had something to do with them quite openly supporting the leak). Stop running the game with those command line options (specifically, remove -shaderdll and -dxlevel), and try deleting half-life 2/hl2/cfg/config.cfg. Hopefully, HL2 will recheck...
Back
Top