summaryrefslogtreecommitdiff
path: root/apps/plugins/mikmod/load_med.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins/mikmod/load_med.c')
-rw-r--r--apps/plugins/mikmod/load_med.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/apps/plugins/mikmod/load_med.c b/apps/plugins/mikmod/load_med.c
index 21a85b39a0..aafb6602a6 100644
--- a/apps/plugins/mikmod/load_med.c
+++ b/apps/plugins/mikmod/load_med.c
@@ -159,7 +159,7 @@ static CHAR MED_Version[] = "OctaMED (MMDx)";
159 159
160/*========== Loader code */ 160/*========== Loader code */
161 161
162int MED_Test(void) 162static int MED_Test(void)
163{ 163{
164 UBYTE id[4]; 164 UBYTE id[4];
165 165
@@ -170,7 +170,7 @@ int MED_Test(void)
170 return 0; 170 return 0;
171} 171}
172 172
173int MED_Init(void) 173static int MED_Init(void)
174{ 174{
175 if (!(me = (MEDEXP *)MikMod_malloc(sizeof(MEDEXP)))) 175 if (!(me = (MEDEXP *)MikMod_malloc(sizeof(MEDEXP))))
176 return 0; 176 return 0;
@@ -181,7 +181,7 @@ int MED_Init(void)
181 return 1; 181 return 1;
182} 182}
183 183
184void MED_Cleanup(void) 184static void MED_Cleanup(void)
185{ 185{
186 MikMod_free(me); 186 MikMod_free(me);
187 MikMod_free(mh); 187 MikMod_free(mh);
@@ -426,7 +426,7 @@ static int LoadMMD1Patterns(void)
426 return 1; 426 return 1;
427} 427}
428 428
429int MED_Load(int curious) 429static int MED_Load(int curious)
430{ 430{
431 int t; 431 int t;
432 ULONG sa[64]; 432 ULONG sa[64];
@@ -680,7 +680,7 @@ int MED_Load(int curious)
680 return 1; 680 return 1;
681} 681}
682 682
683CHAR *MED_LoadTitle(void) 683static CHAR *MED_LoadTitle(void)
684{ 684{
685 ULONG posit, namelen; 685 ULONG posit, namelen;
686 CHAR *name, *retvalue = NULL; 686 CHAR *name, *retvalue = NULL;