[server] Fix build error in CLabelPool ctor

This commit is contained in:
RD42 2024-01-12 22:49:38 +08:00
parent 57d7aa1e22
commit f4edee9eab

View File

@ -5,7 +5,7 @@ CLabelPool::CLabelPool()
{
for(WORD wLabel = 0; wLabel < MAX_LABELS; wLabel++)
{
memset(field_1000[wLabel], 0, sizeof(struc_24));
memset(&field_1000[wLabel], 0, sizeof(struc_24));
field_0[wLabel] = 0;
}
}