aboutsummaryrefslogtreecommitdiff
path: root/source/nds/gui.c
diff options
context:
space:
mode:
Diffstat (limited to 'source/nds/gui.c')
-rw-r--r--source/nds/gui.c9
1 files changed, 7 insertions, 2 deletions
diff --git a/source/nds/gui.c b/source/nds/gui.c
index 4299db2..8c63bc4 100644
--- a/source/nds/gui.c
+++ b/source/nds/gui.c
@@ -50,15 +50,16 @@ char argv[2][MAX_PATH];
// If adding a language, make sure you update the size of the array in
// message.h too.
-char *lang[4] =
+char *lang[5] =
{
"English", // 0
"简体中文", // 1
"Français", // 2
"Deutsch", // 3
+ "Nederlands", // 4
};
-char *language_options[] = { (char *) &lang[0], (char *) &lang[1], (char *) &lang[2], (char *) &lang[3] };
+char *language_options[] = { (char *) &lang[0], (char *) &lang[1], (char *) &lang[2], (char *) &lang[3], (char *) &lang[4] };
/******************************************************************************
* Macro definition
@@ -4111,6 +4112,10 @@ int load_language_msg(char *filename, u32 language)
strcpy(start, "STARTGERMAN");
strcpy(end, "ENDGERMAN");
break;
+ case DUTCH:
+ strcpy(start, "STARTDUTCH");
+ strcpy(end, "ENDDUTCH");
+ break;
}
u32 cmplen = strlen(start);