negative millisecs?
BlitzMax Forums/BlitzMax Programming/negative millisecs? I think millisecs is the time since the startup?
From what I understand it is time since the program started + an arbitrary number (so people can still use it to seed the random number generator). Anyway - you're getting a negative number because you're trying to represent an unsigned value in a variable interpreted as a signed (2's compliment) number. As long as you're using "delta" values it doesn't effect you.