mirror of
https://github.com/zeldaret/oot.git
synced 2024-11-14 21:40:03 +00: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>
17 lines
678 B
C
17 lines
678 B
C
#define MESSAGE_DATA_STATIC
|
|
|
|
#include "message_data_fmt.h"
|
|
|
|
#define DEFINE_MESSAGE(textId, type, yPos, jpnMessage, nesMessage, gerMessage, fraMessage) \
|
|
const char _message_##textId##_fra[] = fraMessage;
|
|
|
|
#define DEFINE_MESSAGE_NES(textId, type, yPos, jpnMessage, nesMessage, gerMessage, fraMessage) \
|
|
/* Present */ const char _message_##textId##_fra[] = fraMessage;
|
|
#define DEFINE_MESSAGE_JPN(textId, type, yPos, jpnMessage, nesMessage, gerMessage, fraMessage) \
|
|
/* Not Present */
|
|
|
|
// Font Message
|
|
#define DEFINE_MESSAGE_FFFC(textId, type, yPos, jpnMessage, nesMessage, gerMessage, fraMessage) \
|
|
/* Not Present */
|
|
|
|
#include "assets/text/message_data.enc.nes.h"
|