d_error_msg mostly done, little Z2LinkMgr work (#2248)

This commit is contained in:
TakaRikka
2024-11-12 02:41:55 -08:00
committed by GitHub
parent f2a7b2a83a
commit ebd7e3feed
14 changed files with 426 additions and 466 deletions
+3
View File
@@ -100,6 +100,9 @@ public:
static bool isLeadByte_ShiftJIS(int b) {
return (b >= 0x81 && b <= 0x9f) || (b >= 0xe0 && b <= 0xfc);
}
static bool isLeadByte_EUC(int b) {
return (b >= 0xA1 && b <= 0xFE) || b == 0x8E;
}
void initialize_state();
void setCharColor(JUtility::TColor col1);