Search:

Type: Posts; User: zenogais

Search: Search took 0.00 seconds; generated 16 minute(s) ago.

  1. Replies
    3
    Views
    1,072

    You need to use the srand() function to seed the...

    You need to use the srand() function to seed the random number generator. The most common way to do this is:



    srand((unsigned int)time(NULL));


    rand() is not a true random number...
  2. Thread: Beta Software

    by zenogais
    Replies
    12
    Views
    2,227

    Theres also UPX (http://upx.sourceforge.net/),...

    Theres also UPX, which is free and does an very very good job.
  3. Replies
    11
    Views
    2,016

    Here's some source code I wrote for timers in an...

    Here's some source code I wrote for timers in an engine I made. The engine used SDL and so the class had support for SDL. This can be easily removed.

    Timer.h:



    #if defined(_MSC_VER) ||...
Results 1 to 3 of 3