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 | |
parent | 0666485a027c9e6fa196882ef411542f554eb9f1 (diff) |
Hopefully finally fixed precaching mechanism
Diffstat (limited to 'src/game')
-rw-r--r-- | src/game/bg_public.h | 4 | ||||
-rw-r--r-- | src/game/g_main.c | 2 |
2 files changed, 3 insertions, 3 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) diff --git a/src/game/g_main.c b/src/game/g_main.c index f2dee3ca..74e2d575 100644 --- a/src/game/g_main.c +++ b/src/game/g_main.c @@ -308,7 +308,7 @@ void G_RegisterPlayerModels( void ) class = BG_FindModelNameForClass( i ); s = va("n\\%s%d\\t\\%i\\model\\%s\\hmodel\\%s\\g_redteam\\%s\\g_blueteam\\%s\\c1\\%s\\hc\\%i\\w\\%i\\l\\%i\\tt\\%d\\tl\\%d", "precache", i, 0, class, class, 0, 0, "7", 100, 0, 0, 0, 0); - trap_SetConfigstring( CS_PLAYERS + MAX_CLIENTS + i, s ); + trap_SetConfigstring( CS_PRECACHES + i, s ); } } |