From b8c374977c67c3351383da722e365eb97141f26b Mon Sep 17 00:00:00 2001 From: cam900 Date: Sun, 25 Dec 2022 16:15:36 +0900 Subject: [PATCH] forgot this --- extern/vgsound_emu-modified/vgsound_emu/src/x1_010/x1_010.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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