From 4306c698044f3aa7d688959cd53691abf6900ed5 Mon Sep 17 00:00:00 2001 From: Wohlstand Date: Sat, 5 Apr 2025 05:00:28 +0300 Subject: Mame FMOPL: Fixed 3DS build thanks to @ds-sloth --- src/chips/mame/mame_fmopl.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/chips/mame/mame_fmopl.cpp b/src/chips/mame/mame_fmopl.cpp index 58fafea..3731211 100644 --- a/src/chips/mame/mame_fmopl.cpp +++ b/src/chips/mame/mame_fmopl.cpp @@ -556,8 +556,8 @@ static const int8_t lfo_pm_table[8*8*2] = { /* work table */ struct FM_WorkTable { - signed int phase_modulation; /* phase modulation input (SLOT 2) */ - signed int output; + int32_t phase_modulation; /* phase modulation input (SLOT 2) */ + int32_t output; uint32_t LFO_AM; int32_t LFO_PM; -- cgit v1.2.3