mirror of
https://github.com/ZDoom/qzdoom.git
synced 2024-11-10 23:02:08 +00:00
Make GC::CheckTime 64-bit, just in case.
This commit is contained in:
parent
e529f2d4d1
commit
a1d0d27278
2 changed files with 2 additions and 2 deletions
|
@ -125,7 +125,7 @@ EGCState State = GCS_Pause;
|
|||
int Pause = DEFAULT_GCPAUSE;
|
||||
int StepMul = DEFAULT_GCMUL;
|
||||
int StepCount;
|
||||
int CheckTime;
|
||||
uint64_t CheckTime;
|
||||
bool FinalGC;
|
||||
|
||||
// PRIVATE DATA DEFINITIONS ------------------------------------------------
|
||||
|
|
|
@ -71,7 +71,7 @@ namespace GC
|
|||
extern bool FinalGC;
|
||||
|
||||
// Counts the number of times CheckGC has been called.
|
||||
extern int CheckTime;
|
||||
extern uint64_t CheckTime;
|
||||
|
||||
// Current white value for known-dead objects.
|
||||
static inline uint32_t OtherWhite()
|
||||
|
|
Loading…
Reference in a new issue