diff options
author | eray orçunus <erayorcunus@gmail.com> | 2019-10-04 00:18:47 +0200 |
---|---|---|
committer | eray orçunus <erayorcunus@gmail.com> | 2019-10-04 00:18:47 +0200 |
commit | 6b4f6e05e2612af715246de58c28128d358b6916 (patch) | |
tree | dc2490e7fd6dc7123991840401048c06da6cd3ec /src/core/config.h | |
parent | Merge branch 'master' of git://github.com/GTAmodding/re3 into erorcun (diff) | |
parent | Fixed disappearing ammo count (diff) | |
download | re3-6b4f6e05e2612af715246de58c28128d358b6916.tar re3-6b4f6e05e2612af715246de58c28128d358b6916.tar.gz re3-6b4f6e05e2612af715246de58c28128d358b6916.tar.bz2 re3-6b4f6e05e2612af715246de58c28128d358b6916.tar.lz re3-6b4f6e05e2612af715246de58c28128d358b6916.tar.xz re3-6b4f6e05e2612af715246de58c28128d358b6916.tar.zst re3-6b4f6e05e2612af715246de58c28128d358b6916.zip |
Diffstat (limited to '')
-rw-r--r-- | src/core/config.h | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/core/config.h b/src/core/config.h index f82967d5..49bef3fa 100644 --- a/src/core/config.h +++ b/src/core/config.h @@ -67,10 +67,15 @@ enum Config { NUMANTENNAS = 8, NUMCORONAS = 56, NUMPOINTLIGHTS = 32, + NUMMONEYMESSAGES = 16, + NUMPICKUPMESSAGES = 16, NUMONSCREENTIMERENTRIES = 1, NUMRADARBLIPS = 32, - NUMPICKUPS = 336, + NUMGENERALPICKUPS = 320, + NUMSCRIPTEDPICKUPS = 16, + NUMPICKUPS = NUMGENERALPICKUPS + NUMSCRIPTEDPICKUPS, + NUMCOLLECTEDPICKUPS = 20, NUMEVENTS = 64, NUM_CARGENS = 160, @@ -140,3 +145,4 @@ enum Config { #define ANIMATE_PED_COL_MODEL //#define REMOVE_TREADABLE_PATHFIND #define VC_PED_PORTS +//#define MONEY_MESSAGES
\ No newline at end of file |