diff options
author | Tim Angus <tim@ngus.net> | 2001-06-30 20:06:28 +0000 |
---|---|---|
committer | Tim Angus <tim@ngus.net> | 2001-06-30 20:06:28 +0000 |
commit | 34b359355ee3e5652b98dbf986276596fd687750 (patch) | |
tree | 266a78075160a4f48683794c128e8365f6fdf457 /src/game/bg_public.h | |
parent | 0666485a027c9e6fa196882ef411542f554eb9f1 (diff) |
Hopefully finally fixed precaching mechanism
Diffstat (limited to 'src/game/bg_public.h')
-rw-r--r-- | src/game/bg_public.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/game/bg_public.h b/src/game/bg_public.h index 883c2957..82c34be0 100644 --- a/src/game/bg_public.h +++ b/src/game/bg_public.h @@ -95,8 +95,8 @@ #define CS_MODELS 33 #define CS_SOUNDS (CS_MODELS+MAX_MODELS) #define CS_PLAYERS (CS_SOUNDS+MAX_SOUNDS) -#define MAX_PRECACHES 32 -#define CS_LOCATIONS (CS_PLAYERS+MAX_CLIENTS+MAX_PRECACHES) +#define CS_PRECACHES (CS_PLAYERS+MAX_CLIENTS) +#define CS_LOCATIONS (CS_PRECACHES+MAX_CLIENTS) #define CS_MAX (CS_LOCATIONS+MAX_LOCATIONS) |