Adding legal message padding

This commit is contained in:
The Gears of Progress 2026-02-11 08:22:49 -05:00 committed by GitHub
parent 37aa2a8674
commit de4e5bbad6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -388,8 +388,8 @@ int main_menu_loop()
// Legal stuff
static void show_legal_text(const u8 *intro_text)
{
tte_set_margins(0, 0, H_MAX, V_MAX);
tte_set_pos(0, 0);
tte_set_margins(8, 0, H_MAX - 8, V_MAX);
tte_set_pos(8, 0);
tte_set_ink(INK_ROM_COLOR);
ptgb_write(intro_text, true);
bool wait = true;