summaryrefslogtreecommitdiff
path: root/apps/language.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/language.c')
-rw-r--r--apps/language.c7
1 files changed, 2 insertions, 5 deletions
diff --git a/apps/language.c b/apps/language.c
index a714ef7d90..7253ec275b 100644
--- a/apps/language.c
+++ b/apps/language.c
@@ -20,9 +20,6 @@
20 ****************************************************************************/ 20 ****************************************************************************/
21 21
22#include <file.h> 22#include <file.h>
23#if defined(SIMULATOR) && defined(__MINGW32__)
24extern int printf(const char *format, ...);
25#endif
26 23
27#include "language.h" 24#include "language.h"
28#include "lang.h" 25#include "lang.h"
@@ -76,8 +73,8 @@ int lang_load(const char *filename)
76 ptr+=2; /* pass the id */ 73 ptr+=2; /* pass the id */
77 if(id < LANG_LAST_INDEX_IN_ARRAY) { 74 if(id < LANG_LAST_INDEX_IN_ARRAY) {
78#if 0 75#if 0
79 printf("%2x New: %30s ", id, ptr); 76 DEBUGF("%2x New: %30s ", id, ptr);
80 printf("Replaces: %s\n", language_strings[id]); 77 DEBUGF("Replaces: %s\n", language_strings[id]);
81#endif 78#endif
82 language_strings[id] = ptr; /* point to this string */ 79 language_strings[id] = ptr; /* point to this string */
83 } 80 }