GUI: Fix bios label capitalization. (#4165)

This commit is contained in:
Mrlinkwii 2021-01-21 18:57:25 +00:00 committed by GitHub
parent 2ffc6b3acd
commit 0689f4bb36
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -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;
}