Skip to content

Commit

Permalink
Replace bugged "é" with regular "e"
Browse files Browse the repository at this point in the history
  • Loading branch information
RocketRobz committed Feb 19, 2018
1 parent 5a7b967 commit f883d90
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
7 changes: 5 additions & 2 deletions romsel_dsimenutheme/arm9/source/iconTitle.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -688,9 +688,12 @@ void titleUpdate(bool isDir, const char* name)
{
if ((p[i] == 0x0A) || (p[i] == 0xFF)) {
p[i / 2] = 0;
bannerlines += 1;
} else
bannerlines++;
} else if (p[i] == 0xE9) {
p[i / 2] = 0x65; // Replace bugged "é" with regular "e"
} else {
p[i / 2] = p[i];
}
}

// text
Expand Down
2 changes: 1 addition & 1 deletion titleandsettings/arm9/source/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -405,7 +405,7 @@ int main(int argc, char **argv) {

char vertext[12];
// snprintf(vertext, sizeof(vertext), "Ver %d.%d.%d ", VERSION_MAJOR, VERSION_MINOR, VERSION_PATCH); // Doesn't work :(
snprintf(vertext, sizeof(vertext), "Ver %d.%d.%d ", 3, 0, 0);
snprintf(vertext, sizeof(vertext), "Ver %d.%d.%d ", 3, 1, 0);

if (showlogo) {
graphicsInit();
Expand Down

0 comments on commit f883d90

Please sign in to comment.