mirror of
https://github.com/zeldaret/mm.git
synced 2026-09-06 10:45:18 -04:00
Port over OoT's new text pipeline (#1685)
* Port OoT's new msgdis and msgenc * format * Remove item_ids try block * Update assets/text/charmap.txt Co-authored-by: Tharo <17233964+Thar0@users.noreply.github.com> --------- Co-authored-by: Tharo <17233964+Thar0@users.noreply.github.com>
This commit is contained in:
@@ -9,17 +9,17 @@ typedef struct MessageTableEntry {
|
||||
/* 0x4 */ const char* segment;
|
||||
} MessageTableEntry; // size = 0x8;
|
||||
|
||||
#define DEFINE_MESSAGE(textId, typePos, msg) \
|
||||
#define DEFINE_MESSAGE(textId, type, yPos, msg) \
|
||||
extern const char _message_##textId[];
|
||||
|
||||
#include "assets/text/message_data.h"
|
||||
|
||||
#undef DEFINE_MESSAGE
|
||||
|
||||
#define DEFINE_MESSAGE(textId, typePos, msg) \
|
||||
#define DEFINE_MESSAGE(textId, type, yPos, msg) \
|
||||
extern const char _message_##textId##_staff[];
|
||||
|
||||
#include "assets/text/staff_message_data.h"
|
||||
#include "assets/text/message_data_staff.h"
|
||||
|
||||
#undef DEFINE_MESSAGE
|
||||
|
||||
|
||||
Reference in New Issue
Block a user