[server] Update CGangZonePool ctor/dtor

This commit is contained in:
RD42 2023-11-24 23:35:01 +08:00
parent 2a34366051
commit 70d9ddbd14
2 changed files with 18 additions and 1 deletions

View File

@ -0,0 +1,13 @@
#include "main.h"
CGangZonePool::CGangZonePool()
{
for (WORD wZone = 0; wZone < MAX_GANG_ZONES; wZone++)
{
field_4000[wZone] = 0;
}
}

View File

@ -5,7 +5,11 @@
class CGangZonePool // size: WL 20480
{
private:
char _gap0[20480];
char gap0[16384];
int field_4000[1024];
public:
CGangZonePool();
~CGangZonePool() {};
};
#endif