From e47769d2f7385c35ff800f6a9b8589386d22bb1b Mon Sep 17 00:00:00 2001 From: OBattler Date: Thu, 28 Jul 2022 03:49:35 +0200 Subject: [PATCH] Fixed a warning in the YMFM code. --- src/sound/snd_opl_ymfm.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/sound/snd_opl_ymfm.cpp b/src/sound/snd_opl_ymfm.cpp index 28ea7a621..c5ee107c5 100644 --- a/src/sound/snd_opl_ymfm.cpp +++ b/src/sound/snd_opl_ymfm.cpp @@ -63,7 +63,7 @@ public: protected: int32_t m_buffer[SOUNDBUFLEN * 2]; - uint32_t m_buf_pos; + int m_buf_pos; int8_t m_flags; fm_type m_type; };