From 1554aac4e14e378f1550c6bfd69487b80e3274ba Mon Sep 17 00:00:00 2001 From: aspargas2 Date: Thu, 2 Dec 2021 14:22:13 -0500 Subject: [PATCH] fix hexeditor instructions formatting --- arm9/source/godmode.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arm9/source/godmode.c b/arm9/source/godmode.c index 256d4d1..b4cb27c 100644 --- a/arm9/source/godmode.c +++ b/arm9/source/godmode.c @@ -571,7 +571,7 @@ u32 FileHexViewer(const char* path) { } static bool show_instr = true; - static const char* instr = "Hexeditor Controls:\n ↑↓→←(+R) - Scroll\nR+Y - Switch view\nX - Search / goto...\nA - Enter edit mode\nA+↑↓→← - Edit value\nB - Exit\n"; + static const char* instr = "Hexeditor Controls:\n \n↑↓→←(+R) - Scroll\nR+Y - Switch view\nX - Search / goto...\nA - Enter edit mode\nA+↑↓→← - Edit value\nB - Exit\n"; if (show_instr) { // show one time instructions ShowPrompt(false, instr); show_instr = false;