From 146da2ce7649fcea31f76502b4307461b1a70f23 Mon Sep 17 00:00:00 2001 From: cam900 Date: Sat, 17 Sep 2022 13:05:58 +0900 Subject: [PATCH] Forgot to sync --- extern/vgsound_emu-modified/vgsound_emu/src/es550x/es5505.hpp | 4 ++-- extern/vgsound_emu-modified/vgsound_emu/src/es550x/es5506.hpp | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/extern/vgsound_emu-modified/vgsound_emu/src/es550x/es5505.hpp b/extern/vgsound_emu-modified/vgsound_emu/src/es550x/es5505.hpp index 4c8454c88..d1c70614a 100644 --- a/extern/vgsound_emu-modified/vgsound_emu/src/es550x/es5505.hpp +++ b/extern/vgsound_emu-modified/vgsound_emu/src/es550x/es5505.hpp @@ -65,9 +65,9 @@ class es5505_core : public es550x_shared_core } // getters - inline u32 left() { return m_left; } + inline s32 left() { return m_left; } - inline u32 right() { return m_right; } + inline s32 right() { return m_right; } output_t &operator+=(output_t &src) { diff --git a/extern/vgsound_emu-modified/vgsound_emu/src/es550x/es5506.hpp b/extern/vgsound_emu-modified/vgsound_emu/src/es550x/es5506.hpp index 53713cfbe..524e754e1 100644 --- a/extern/vgsound_emu-modified/vgsound_emu/src/es550x/es5506.hpp +++ b/extern/vgsound_emu-modified/vgsound_emu/src/es550x/es5506.hpp @@ -65,9 +65,9 @@ class es5506_core : public es550x_shared_core } // getters - inline u32 left() { return m_left; } + inline s32 left() { return m_left; } - inline u32 right() { return m_right; } + inline s32 right() { return m_right; } output_t &operator+=(output_t &src) {