summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/tv.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/tv.c b/src/tv.c
index 71e13e9ce..56ba9ed2e 100644
--- a/src/tv.c
+++ b/src/tv.c
@@ -1683,6 +1683,13 @@ void DoTVShow(void) {
}
}
+void TVShowConvertInternationalString(u8 *dest, u8 *src, u8 language) {
+ StringCopy(dest, src);
+ if (language < LANGUAGE_ENGLISH) {
+ ConvertInternationalString(dest, LANGUAGE_JAPANESE);
+ }
+}
+
asm(".section .text_c");
void TVShowConvertInternationalString(u8 *, u8 *, u8);