Skip to content

Commit

Permalink
Move version string to the left 1px
Browse files Browse the repository at this point in the history
  • Loading branch information
Epicpkmn11 committed Sep 9, 2019
1 parent 2cc9f3f commit 3631e87
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions arm9/source/fileBrowse.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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();

Expand Down Expand Up @@ -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<std::string> extensionList;
extensionList.push_back("sav");
Expand Down

0 comments on commit 3631e87

Please sign in to comment.