aboutsummaryrefslogtreecommitdiffstats
path: root/src/gtrans/gtrans.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/gtrans/gtrans.c')
-rw-r--r--src/gtrans/gtrans.c10
1 files changed, 8 insertions, 2 deletions
diff --git a/src/gtrans/gtrans.c b/src/gtrans/gtrans.c
index 4961cdcb..21508567 100644
--- a/src/gtrans/gtrans.c
+++ b/src/gtrans/gtrans.c
@@ -25,23 +25,29 @@ void _gtransDeinit(void)
const char* gtransString(const char* string)
{
+ // Find the index of the specified string in the base language table
size_t i = 0;
while (1) {
+ // Prevent overflow
if (i >= _languageBase->numEntries-1) {
- return 0;
+ return string;
}
+ // Check if we found the string
if (strcmp(string, _languageBase->strings[i]) == 0) {
break;
}
+ // Otherwise keep going
i++;
}
+ // Make sure that the index exists in the current language table
if (i >= _languageCurrent->numEntries-1) {
- return 0;
+ return string;
}
+ // Return the translated string
return _languageCurrent->strings[i];
}