Skip to content

Commit

Permalink
Fix centering in hardware string
Browse files Browse the repository at this point in the history
  • Loading branch information
mrehkopf committed Feb 25, 2023
1 parent 1967cc6 commit 507ed36
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/snes.c
Expand Up @@ -458,7 +458,7 @@ void snes_bootprint_version() {
hwinfo_t hwinfo;
get_hwinfo(&hwinfo);
snes_bootprint(0," v" CONFIG_VERSION);
snes_bootprint_center(23, " %s %s Rev.%s", hwinfo.makername, hwinfo.modelname, hwinfo.revname);
snes_bootprint_center(23, "%s %s Rev.%s", hwinfo.makername, hwinfo.modelname, hwinfo.revname);
}

void snes_menu_errmsg(int err, void* msg) {
Expand Down

0 comments on commit 507ed36

Please sign in to comment.