mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-10 15:22:04 +00:00
Modify the hack used by qpic_t slightly. This is not over, but this will
do for now. A full texture_t should eventually replace qpic_t/glpic_t..
This commit is contained in:
parent
4b3e056429
commit
9788b579c5
1 changed files with 2 additions and 1 deletions
|
@ -52,7 +52,8 @@
|
|||
typedef struct qpic_s
|
||||
{
|
||||
int width, height;
|
||||
byte data[4]; // variably sized
|
||||
// byte data[4]; // variably sized
|
||||
byte data[ZERO_LENGTH_ARRAY]; // variably sized
|
||||
} qpic_t;
|
||||
|
||||
typedef struct
|
||||
|
|
Loading…
Reference in a new issue