summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSergeanur <s.anureev@yandex.ua>2021-05-22 07:41:41 +0200
committerSergeanur <s.anureev@yandex.ua>2021-06-24 20:42:10 +0200
commit714cd47db97dc7500e373e475301fc7d56d0b3c0 (patch)
tree27b28cf925e4e9247118ed9c47d78e8b8ee4af18
parentFix mod 0 crash (diff)
downloadre3-714cd47db97dc7500e373e475301fc7d56d0b3c0.tar
re3-714cd47db97dc7500e373e475301fc7d56d0b3c0.tar.gz
re3-714cd47db97dc7500e373e475301fc7d56d0b3c0.tar.bz2
re3-714cd47db97dc7500e373e475301fc7d56d0b3c0.tar.lz
re3-714cd47db97dc7500e373e475301fc7d56d0b3c0.tar.xz
re3-714cd47db97dc7500e373e475301fc7d56d0b3c0.tar.zst
re3-714cd47db97dc7500e373e475301fc7d56d0b3c0.zip
-rw-r--r--src/core/config.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/core/config.h b/src/core/config.h
index a7407bb4..d5b21713 100644
--- a/src/core/config.h
+++ b/src/core/config.h
@@ -10,9 +10,9 @@ enum Config {
MAX_CDIMAGES = 8, // additional cdimages
MAX_CDCHANNELS = 5,
- MODELINFOSIZE = 6500, // only 4900
- TXDSTORESIZE = 1385, // only 1200
- COLSTORESIZE = 31, // only 15
+ MODELINFOSIZE = 4900,
+ TXDSTORESIZE = 1200,
+ COLSTORESIZE = 15,
EXTRADIRSIZE = 256,
CUTSCENEDIRSIZE = 512,
@@ -100,7 +100,7 @@ enum Config {
NUMPACMANPICKUPS = 256,
NUMEVENTS = 64,
- NUM_CARGENS = 500,
+ NUM_CARGENS = 195, // 500 on mobile
NUM_PATH_NODES_IN_AUTOPILOT = 8,