diff options
author | Michael Pavone <pavone@retrodev.com> | 2019-06-24 09:11:38 -0700 |
---|---|---|
committer | Michael Pavone <pavone@retrodev.com> | 2019-06-24 09:11:38 -0700 |
commit | 9f112ee9e97c26304799dfd84caadeeb2be46fe0 (patch) | |
tree | 29eee32f09554511b2cb1181192da8a33134780f /libblastem.c | |
parent | 0ac884eaf32a35bf69e843d0acfab9817edc5263 (diff) |
Fix libretro and stateview targets
Diffstat (limited to 'libblastem.c')
-rw-r--r-- | libblastem.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libblastem.c b/libblastem.c index 5254e7e..d02a318 100644 --- a/libblastem.c +++ b/libblastem.c @@ -353,12 +353,12 @@ void render_infobox(char *title, char *message) { } -struct audio_source { +typedef struct { int32_t freq; int32_t left_accum; int32_t right_accum; int32_t num_samples; -}; +} audio_source; static audio_source *audio_sources[8]; static uint8_t num_audio_sources; |