mirror of https://github.com/PCSX2/pcsx2.git
GUI: Fix bios label capitalization. (#4165)
This commit is contained in:
parent
2ffc6b3acd
commit
0689f4bb36
|
@ -770,10 +770,10 @@ void MainEmuFrame::ApplyCoreStatus()
|
||||||
label = _("Boot CDVD");
|
label = _("Boot CDVD");
|
||||||
break;
|
break;
|
||||||
case CDVD_SourceType::NoDisc:
|
case CDVD_SourceType::NoDisc:
|
||||||
label = _("Boot Bios");
|
label = _("Boot BIOS");
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
label = _("Boot Bios");
|
label = _("Boot BIOS");
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue