From 3631e8773418c0d22cea9b0046dad4d7c06e34cb Mon Sep 17 00:00:00 2001 From: Epicpkmn11 Date: Mon, 9 Sep 2019 02:42:28 -0500 Subject: [PATCH] Move version string to the left 1px --- arm9/source/fileBrowse.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/arm9/source/fileBrowse.cpp b/arm9/source/fileBrowse.cpp index 4ea0dd164..3267375af 100755 --- a/arm9/source/fileBrowse.cpp +++ b/arm9/source/fileBrowse.cpp @@ -265,7 +265,7 @@ std::string topMenuSelect(void) { } // Print version number - printText(VER_NUMBER, 256-getTextWidth(VER_NUMBER), 176, true); + printText(VER_NUMBER, 256-getTextWidth(VER_NUMBER)-1, 176, true); updateCardInfo(); @@ -522,7 +522,7 @@ std::string browseForSave(void) { } // Print version number - printText(VER_NUMBER, 256-getTextWidth(VER_NUMBER), 176, true); + printText(VER_NUMBER, 256-getTextWidth(VER_NUMBER)-1, 176, true); std::vector extensionList; extensionList.push_back("sav");