summaryrefslogtreecommitdiff
path: root/apps/codecs/spc.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/codecs/spc.c')
-rw-r--r--apps/codecs/spc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/codecs/spc.c b/apps/codecs/spc.c
index 80c28abbc1..6b21f9ad19 100644
--- a/apps/codecs/spc.c
+++ b/apps/codecs/spc.c
@@ -34,7 +34,7 @@ CODEC_HEADER
34 34
35/**************** ID666 parsing ****************/ 35/**************** ID666 parsing ****************/
36 36
37struct { 37static struct {
38 unsigned char isBinary; 38 unsigned char isBinary;
39 char song[32]; 39 char song[32];
40 char game[32]; 40 char game[32];
@@ -397,7 +397,7 @@ static inline void spc_play_send_samples(int32_t *samples)
397 397
398#else /* !SPC_DUAL_CORE */ 398#else /* !SPC_DUAL_CORE */
399/** Implementations for single-core operation **/ 399/** Implementations for single-core operation **/
400int32_t wav_chunk[WAV_CHUNK_SIZE*2] IBSS_ATTR; 400static int32_t wav_chunk[WAV_CHUNK_SIZE*2] IBSS_ATTR;
401 401
402/* load a new program into emu */ 402/* load a new program into emu */
403static inline int load_spc_buffer(uint8_t *buf, size_t size) 403static inline int load_spc_buffer(uint8_t *buf, size_t size)