aboutsummaryrefslogtreecommitdiff
path: root/src/operate.cc
diff options
context:
space:
mode:
authorfusion32 <marcopuzziello@gmail.com>2025-06-17 03:13:05 -0300
committerfusion32 <marcopuzziello@gmail.com>2025-06-17 03:13:05 -0300
commit56bdec57609cd00d7827a3008a9c6b06707097ca (patch)
tree08e42a536bf807842de299047195c9ecf5d526ae /src/operate.cc
parent0612480d9beb19b9e90b3a4f1198b3da1fd21f6a (diff)
downloadgame-56bdec57609cd00d7827a3008a9c6b06707097ca.tar.gz
game-56bdec57609cd00d7827a3008a9c6b06707097ca.zip
all `crplayer.cc` functions outside `TPlayer`
Diffstat (limited to 'src/operate.cc')
-rw-r--r--src/operate.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/operate.cc b/src/operate.cc
index 07f3c50..18829a3 100644
--- a/src/operate.cc
+++ b/src/operate.cc
@@ -2886,7 +2886,7 @@ void RefreshSector(int SectorX, int SectorY, int SectorZ, const uint8 *Data, int
}
void RefreshMap(void){
- TDynamicWriteBuffer HelpBuffer(0x10000);
+ TDynamicWriteBuffer HelpBuffer(KB(64));
for(int SectorZ = SectorZMin; SectorZ <= SectorZMax; SectorZ += 1)
for(int SectorY = SectorYMin; SectorY <= SectorYMax; SectorY += 1)
for(int SectorX = SectorXMin; SectorX <= SectorXMax; SectorX += 1){