mirror of
https://github.com/OpenDriver2/REDRIVER2.git
synced 2024-11-22 02:12:43 +01:00
- more Debug info on spool
This commit is contained in:
parent
9d096ef7cb
commit
bb7ba1580c
@ -94,15 +94,19 @@ void DrawDebugOverlays()
|
||||
PrintString(tempBuf, 10, 20);
|
||||
|
||||
extern volatile int spoolactive;
|
||||
sprintf(tempBuf, "Spooling: %d spec: %d, active: %d", doSpooling, allowSpecSpooling, spoolactive);
|
||||
PrintString(tempBuf, 10, 30);
|
||||
|
||||
extern int numActiveCops;
|
||||
extern int numCopCars;
|
||||
extern int numCivCars;
|
||||
extern int numParkedCars;
|
||||
extern int maxCopCars;
|
||||
extern int maxCivCars;
|
||||
extern int current_region;
|
||||
extern int LoadedArea;
|
||||
|
||||
Spool* spoolptr = (Spool*)(RegionSpoolInfo + spoolinfo_offsets[current_region]);
|
||||
|
||||
sprintf(tempBuf, "Spooling: %d spec: %d, active: %d, Reg: %d, Ar: %d, Cn: %d %d", doSpooling, allowSpecSpooling, spoolactive, current_region, LoadedArea, spoolptr->connected_areas[0] & 0x3f, spoolptr->connected_areas[1] & 0x3f);
|
||||
PrintString(tempBuf, 10, 30);
|
||||
|
||||
sprintf(tempBuf, "Civs: %d - %d parked - max %d", numCivCars, numParkedCars, maxCivCars);
|
||||
PrintString(tempBuf, 10, 40);
|
||||
|
Loading…
Reference in New Issue
Block a user