mirror of
https://github.com/yquake2/slightmechanicaldestruction.git
synced 2024-11-22 04:22:15 +00:00
Fix warning texthnd_t->buffer
This commit is contained in:
parent
29df38f239
commit
2514b693ad
2 changed files with 9 additions and 9 deletions
|
@ -217,7 +217,7 @@ void Do_Text_Display(edict_t *activator, int flags, char *message)
|
|||
char *p1, *p2, *p3;
|
||||
char sound[64];
|
||||
texthnd_t *hnd;
|
||||
byte *temp_buffer;
|
||||
char *temp_buffer;
|
||||
int line_length;
|
||||
int new_line_length;
|
||||
qboolean alt, centered, right_justified;
|
||||
|
|
|
@ -13,7 +13,7 @@ typedef struct texthnd_s {
|
|||
int flags;
|
||||
int allocated;
|
||||
float last_update;
|
||||
byte *buffer;
|
||||
char *buffer;
|
||||
} texthnd_t;
|
||||
|
||||
typedef struct text_s {
|
||||
|
|
Loading…
Reference in a new issue