diff libblastem.c @ 1868:bfacedbae5f0

Fix libretro and stateview targets
author Michael Pavone <pavone@retrodev.com>
date Mon, 24 Jun 2019 09:11:38 -0700
parents 96323d73b8ab
children 55198fc9cc1f
line wrap: on
line diff
--- a/libblastem.c	Thu Jun 20 23:28:18 2019 -0700
+++ b/libblastem.c	Mon Jun 24 09:11:38 2019 -0700
@@ -353,12 +353,12 @@
 {
 }
 
-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;