mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-10 15:22:04 +00:00
Fix some bitrot.
Just updating for the changes to the ALLOC/FREE macros.
This commit is contained in:
parent
96c40cb9a1
commit
550f1ae788
2 changed files with 3 additions and 3 deletions
|
@ -38,8 +38,8 @@
|
|||
#include "QF/qtypes.h"
|
||||
#include "QF/segtext.h"
|
||||
|
||||
static segchunk_t *free_chunks;
|
||||
static segtext_t *free_texts;
|
||||
static segchunk_t *chunks_freelist;
|
||||
static segtext_t *texts_freelist;
|
||||
|
||||
static segchunk_t *
|
||||
new_chunk (void)
|
||||
|
|
|
@ -48,7 +48,7 @@ typedef struct glsl_effect_s {
|
|||
} glsl_effect_t;
|
||||
|
||||
static hashtab_t *effect_tab;
|
||||
static glsl_effect_t *free_effects;
|
||||
static glsl_effect_t *effects_freelist;
|
||||
|
||||
static glsl_effect_t *
|
||||
new_effect (void)
|
||||
|
|
Loading…
Reference in a new issue