summaryrefslogtreecommitdiff
path: root/tools/voicefont.c
diff options
context:
space:
mode:
Diffstat (limited to 'tools/voicefont.c')
-rw-r--r--tools/voicefont.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/voicefont.c b/tools/voicefont.c
index 3b67e97436..4d1363b1bc 100644
--- a/tools/voicefont.c
+++ b/tools/voicefont.c
@@ -70,7 +70,7 @@ int BitswapAudio (unsigned char* pDest, unsigned char* pSrc, size_t len)
70 return 0; 70 return 0;
71} 71}
72 72
73int voicefont(FILE* voicefontids,int targetnum,char* filedir, FILE* output) 73int voicefont(FILE* voicefontids,int targetnum,char* filedir, FILE* output, unsigned int version)
74{ 74{
75 75
76 int i,j; 76 int i,j;
@@ -159,7 +159,7 @@ int voicefont(FILE* voicefontids,int targetnum,char* filedir, FILE* output)
159 /* Create the file format: */ 159 /* Create the file format: */
160 160
161 /* 1st 32 bit value in the file is the version number */ 161 /* 1st 32 bit value in the file is the version number */
162 value = UINT_TO_BE(400); /* 4.00 */ 162 value = UINT_TO_BE(version);
163 fwrite(&value, sizeof(value), 1, output); 163 fwrite(&value, sizeof(value), 1, output);
164 164
165 /* 2nd 32 bit value in the file is the id number for the target 165 /* 2nd 32 bit value in the file is the id number for the target
@@ -243,7 +243,7 @@ int main (int argc, char** argv)
243 return -2; 243 return -2;
244 } 244 }
245 245
246 voicefont(ids, atoi(argv[2]),argv[3],output); 246 voicefont(ids, atoi(argv[2]),argv[3],output, 400);
247 return 0; 247 return 0;
248} 248}
249#endif 249#endif