sm64/text/debug_text.inc.c
2023-08-17 08:56:02 -04:00

37 lines
859 B
C
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

// == debug table ==
#ifndef VERSION_EU
// (this wasn't translated for US, and was removed in EU)
static const u8 Debug0[] = {
_(" \n"
" つづける?\n"
" 1 マウンテン\n"
" 2 ファイアーバブル\n"
" 3 スノースライダー\n"
" 4 ウォーターランド\n"
"   クッパ1ごう\n"
" もどる")
};
static const u8 Debug1[] = {
_("    \n"
" つづける?\n"
" やめる ?")
};
static const struct DialogEntry debug_text_entry_0 = {
1, 8, 30, 200, Debug0
};
static const struct DialogEntry debug_text_entry_1 = {
1, 3, 100, 150, Debug1
};
const struct DialogEntry *const seg2_debug_text_table[] = {
&debug_text_entry_0, &debug_text_entry_1, NULL,
};
#endif