summaryrefslogtreecommitdiff
path: root/apps/plugins/mikmod/load_uni.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins/mikmod/load_uni.c')
-rw-r--r--apps/plugins/mikmod/load_uni.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/apps/plugins/mikmod/load_uni.c b/apps/plugins/mikmod/load_uni.c
index 7a5a24a507..7bedd8f16c 100644
--- a/apps/plugins/mikmod/load_uni.c
+++ b/apps/plugins/mikmod/load_uni.c
@@ -108,7 +108,7 @@ static char* readstring(void)
108 return s; 108 return s;
109} 109}
110 110
111int UNI_Test(void) 111static int UNI_Test(void)
112{ 112{
113 char id[6]; 113 char id[6];
114 114
@@ -125,12 +125,12 @@ int UNI_Test(void)
125 return 0; 125 return 0;
126} 126}
127 127
128int UNI_Init(void) 128static int UNI_Init(void)
129{ 129{
130 return 1; 130 return 1;
131} 131}
132 132
133void UNI_Cleanup(void) 133static void UNI_Cleanup(void)
134{ 134{
135 MikMod_free(wh); 135 MikMod_free(wh);
136 s=NULL; 136 s=NULL;
@@ -498,7 +498,7 @@ static int loadsmp5(void)
498 return 1; 498 return 1;
499} 499}
500 500
501int UNI_Load(int curious) 501static int UNI_Load(int curious)
502{ 502{
503 int t; 503 int t;
504 char *modtype,*oldtype=NULL; 504 char *modtype,*oldtype=NULL;
@@ -689,7 +689,7 @@ int UNI_Load(int curious)
689 return 1; 689 return 1;
690} 690}
691 691
692CHAR *UNI_LoadTitle(void) 692static CHAR *UNI_LoadTitle(void)
693{ 693{
694 UBYTE ver; 694 UBYTE ver;
695 int posit[3]={304,306,26}; 695 int posit[3]={304,306,26};