mirror of
https://github.com/scratchfoundation/bgfx.git
synced 2024-11-28 18:45:54 -05:00
Fixed compile warnings.
This commit is contained in:
parent
c47216a32c
commit
5101804b0e
1 changed files with 11 additions and 2 deletions
9
3rdparty/tinyexr/tinyexr.h
vendored
9
3rdparty/tinyexr/tinyexr.h
vendored
|
@ -1306,8 +1306,17 @@ typedef struct {
|
||||||
m_tree[TINFL_MAX_HUFF_SYMBOLS_0 * 2];
|
m_tree[TINFL_MAX_HUFF_SYMBOLS_0 * 2];
|
||||||
} tinfl_huff_table;
|
} tinfl_huff_table;
|
||||||
|
|
||||||
|
|
||||||
|
#ifndef MINIZ_HAS_64BIT_REGISTERS
|
||||||
|
# define MINIZ_HAS_64BIT_REGISTERS 0
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#ifndef TINFL_USE_64BIT_BITBUF
|
||||||
# if MINIZ_HAS_64BIT_REGISTERS
|
# if MINIZ_HAS_64BIT_REGISTERS
|
||||||
# define TINFL_USE_64BIT_BITBUF 1
|
# define TINFL_USE_64BIT_BITBUF 1
|
||||||
|
# else
|
||||||
|
# define TINFL_USE_64BIT_BITBUF 0
|
||||||
|
# endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if TINFL_USE_64BIT_BITBUF
|
#if TINFL_USE_64BIT_BITBUF
|
||||||
|
|
Loading…
Reference in a new issue