mirror of
https://github.com/zeldaret/oot.git
synced 2024-11-13 04:39:36 +00:00
a6f646dc65
* Introduce assets/_extracted/VERSION, with text extracted there * move to `extracted/text/` * Update gitignore s * rework args for msgenc.py * put mkdir with others, until theyre all moved at once * move 0xFFFC back to being extracted, making it use specific macro `DEFINE_MESSAGE_NES` to handle its special behavior * prettier gitignore * Move messages 0xFFFC, 0xFFFD to committed message_data.h
10 lines
325 B
C
10 lines
325 B
C
#define MESSAGE_DATA_STATIC
|
|
|
|
#include "message_data_fmt.h"
|
|
|
|
#define DEFINE_MESSAGE(textId, type, yPos, nesMessage, gerMessage, fraMessage) \
|
|
const char _message_##textId##_fra[sizeof(fraMessage)] = { fraMessage END };
|
|
|
|
#define DEFINE_MESSAGE_NES(textId, type, yPos, nesMessage)
|
|
|
|
#include "assets/text/message_data.enc.h"
|