summaryrefslogtreecommitdiff
path: root/apps/plugins/mikmod/mloader.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins/mikmod/mloader.c')
-rw-r--r--apps/plugins/mikmod/mloader.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/plugins/mikmod/mloader.c b/apps/plugins/mikmod/mloader.c
index 7bce40578e..5f58d8102f 100644
--- a/apps/plugins/mikmod/mloader.c
+++ b/apps/plugins/mikmod/mloader.c
@@ -342,7 +342,7 @@ static MODULE *ML_AllocUniMod(void)
342 return (mf=MikMod_malloc(sizeof(MODULE))); 342 return (mf=MikMod_malloc(sizeof(MODULE)));
343} 343}
344 344
345void Player_Free_internal(MODULE *mf) 345static void Player_Free_internal(MODULE *mf)
346{ 346{
347 if(mf) { 347 if(mf) {
348 Player_Exit_internal(mf); 348 Player_Exit_internal(mf);
@@ -443,7 +443,7 @@ MIKMODAPI CHAR* Player_LoadTitle(CHAR* filename)
443} 443}
444 444
445/* Loads a module given an reader */ 445/* Loads a module given an reader */
446MODULE* Player_LoadGeneric_internal(MREADER *reader,int maxchan,int curious) 446static MODULE* Player_LoadGeneric_internal(MREADER *reader,int maxchan,int curious)
447{ 447{
448 int t; 448 int t;
449 MLOADER *l; 449 MLOADER *l;