mirror of
https://github.com/zeldaret/oot
synced 2026-05-23 15:01:47 -04:00
baf1e8c174
* Reworked text extraction + add JP text extraction * Format * Suggested changes * Correct address for gc-us sJpnMessageEntryTable Co-authored-by: cadmic <cadmic24@gmail.com> --------- Co-authored-by: cadmic <cadmic24@gmail.com>
38 lines
1.4 KiB
C
38 lines
1.4 KiB
C
#include "text/message_data.h"
|
|
|
|
/*
|
|
* The following two messages should be kept last and in this order.
|
|
* Message 0xFFFD must be last to not break the message debugger (see R_MESSAGE_DEBUGGER_TEXTID).
|
|
* Message 0xFFFC must be immediately before message 0xFFFD to not break Font_LoadOrderedFont.
|
|
*/
|
|
DEFINE_MESSAGE_FFFC(0xFFFC, TEXTBOX_TYPE_BLACK, TEXTBOX_POS_VARIABLE,
|
|
MSG(
|
|
"0123456789あいうえおかきくけこ\n"
|
|
"さしすせそたちつてとなにぬねのはひふへほ\n"
|
|
"まみむめもやゆよらりるれろわをんぁぃぅぇ\n"
|
|
"ぉっゃゅょがぎぐげござじずぜぞだぢづでど\n"
|
|
"ばびぶべぼぱぴぷぺぽアイウエオカキクケコ\n"
|
|
"サシスセソタチツテトナニヌネノハヒフヘホ\n"
|
|
"マミムメモヤユヨラリルレロワヲンァィゥェ\n"
|
|
"ォッャュョガギグゲゴザジズゼゾダヂヅデド\n"
|
|
"バビブベボパピプペポヴABCDEFGHI\n"
|
|
"JKLMNOPQRSTUVWXYZabc\n"
|
|
"defghijklmnopqrstuvw\n"
|
|
"xyz ┯?!:−()゛゜,./"
|
|
)
|
|
,
|
|
MSG(
|
|
"0123456789\n"
|
|
"ABCDEFGHIJKLMN\n"
|
|
"OPQRSTUVWXYZ\n"
|
|
"abcdefghijklmn\n"
|
|
"opqrstuvwxyz\n"
|
|
" -.\n"
|
|
)
|
|
,
|
|
MSG(/* UNUSED */)
|
|
,
|
|
MSG(/* UNUSED */)
|
|
)
|
|
DEFINE_MESSAGE(0xFFFD, TEXTBOX_TYPE_BLACK, TEXTBOX_POS_VARIABLE, MSG(), MSG(), MSG(), MSG())
|