Exactly that. If I close the window, it'll pause, but when I open the window back up, it'll resume where it left off. I don't even see the text from the Census unless I have the window open. It's weird. Any help would be much appreciated.
Thanks.
Search found 2 matches
- Fri Dec 30, 2005 9:52 pm
- Forum: CensusPlus UI Mod Bugs
- Topic: Census does not work unless I have the window open
- Replies: 1
- Views: 2973
- Fri Dec 30, 2005 9:50 pm
- Forum: CensusPlus UI Mod Bugs
- Topic: negative exp
- Replies: 2
- Views: 3736
Yeah, this has to do with basic number types in C++. An integer can only go so high before it rolls over. A "long int (signed)" can only go from -2,147,483,648 to 2,147,483,647... So once it goes higher than 2,147,483,647, it becomes -2,147,483,648. Same with an "unsigned long int" that goes from 0 ...