mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-13 07:57:52 +00:00
Fixed GCC 4.9 compilation error
src/sound/timiditypp/instrum.cpp:45:26: error: array used as initializer
This commit is contained in:
parent
4fdf488960
commit
22819e640a
1 changed files with 1 additions and 1 deletions
|
@ -335,7 +335,7 @@ class Instruments
|
||||||
int progbase = 0;
|
int progbase = 0;
|
||||||
int32_t modify_release = 0;
|
int32_t modify_release = 0;
|
||||||
bool opt_sf_close_each_file = true;
|
bool opt_sf_close_each_file = true;
|
||||||
char def_instr_name[256] = "";
|
char def_instr_name[256] = { '\0' };
|
||||||
SFInsts *sfrecs = nullptr;
|
SFInsts *sfrecs = nullptr;
|
||||||
SFInsts *current_sfrec = nullptr;
|
SFInsts *current_sfrec = nullptr;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue