mirror of
https://github.com/ioquake/ioq3.git
synced 2024-11-10 07:11:46 +00:00
fix (likely bogus) warning about uninitialized variables
This commit is contained in:
parent
4f1b8a2dc8
commit
cc1fb807c2
1 changed files with 1 additions and 1 deletions
|
@ -100,7 +100,7 @@ typedef struct { /* Bitreading working state within an MCU */
|
|||
#define BITREAD_STATE_VARS \
|
||||
register bit_buf_type get_buffer; \
|
||||
register int bits_left; \
|
||||
bitread_working_state br_state
|
||||
bitread_working_state br_state = {0}
|
||||
|
||||
#define BITREAD_LOAD_STATE(cinfop,permstate) \
|
||||
br_state.cinfo = cinfop; \
|
||||
|
|
Loading…
Reference in a new issue