diff --git a/extern/vgsound_emu-modified/vgsound_emu/src/x1_010/x1_010.hpp b/extern/vgsound_emu-modified/vgsound_emu/src/x1_010/x1_010.hpp index 85392b8b7..52843685a 100644 --- a/extern/vgsound_emu-modified/vgsound_emu/src/x1_010/x1_010.hpp +++ b/extern/vgsound_emu-modified/vgsound_emu/src/x1_010/x1_010.hpp @@ -144,10 +144,10 @@ class x1_010_core : public vgsound_emu_core *this, *this} , m_intf(intf) - , m_out{0, 0} { m_envelope.fill(0); m_wave.fill(0); + m_out.fill(0); } // register accessor @@ -176,7 +176,7 @@ class x1_010_core : public vgsound_emu_core std::array m_wave; // output data - std::array m_out = {0, 0}; + std::array m_out; }; #endif