Skip to content

Commit

Permalink
GUI: Fix bios label capitalization. (#4165)
Browse files Browse the repository at this point in the history
  • Loading branch information
Mrlinkwii committed Jan 21, 2021
1 parent 2ffc6b3 commit 0689f4b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pcsx2/gui/MainFrame.cpp
Expand Up @@ -770,10 +770,10 @@ void MainEmuFrame::ApplyCoreStatus()
label = _("Boot CDVD");
break;
case CDVD_SourceType::NoDisc:
label = _("Boot Bios");
label = _("Boot BIOS");
break;
default:
label = _("Boot Bios");
label = _("Boot BIOS");
break;
}

Expand Down

0 comments on commit 0689f4b

Please sign in to comment.