UI: Clarify 'MCPX' for boot ROM and 'BIOS' for flash ROM

This commit is contained in:
revix 2022-06-20 00:34:32 +02:00 committed by GitHub
parent f672185b1c
commit 7e8b4dd430
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -779,11 +779,11 @@ void MainMenuSystemView::Draw()
}
SectionTitle("Files");
if (FilePicker("Boot ROM", &g_config.sys.files.bootrom_path,
if (FilePicker("MCPX Boot ROM", &g_config.sys.files.bootrom_path,
rom_file_filters)) {
m_dirty = true;
}
if (FilePicker("Flash ROM", &g_config.sys.files.flashrom_path,
if (FilePicker("Flash ROM (BIOS)", &g_config.sys.files.flashrom_path,
rom_file_filters)) {
m_dirty = true;
}