From e03f7adc85012062dc92152a64aa5801d52bb6dd Mon Sep 17 00:00:00 2001 From: twinaphex Date: Wed, 7 Oct 2020 00:09:44 +0200 Subject: [PATCH] Fix warnings --- src/fds_apu.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/fds_apu.c b/src/fds_apu.c index 8d67d36..8115c03 100644 --- a/src/fds_apu.c +++ b/src/fds_apu.c @@ -19,11 +19,12 @@ */ /* Begin FDS sound */ - +#include #include "fceu-types.h" #include "x6502.h" #include "fceu.h" #include "sound.h" +#include "state.h" #define FDSClock (1789772.7272727272727272 / 2) @@ -295,4 +296,4 @@ DECLFW(FDSSoundWrite) { void FDSSoundPower(void) { FDSSoundReset(); FDSSoundStateAdd(); -} \ No newline at end of file +}