mirror of
https://github.com/86Box/86Box.git
synced 2026-02-22 09:35:32 -07:00
Merge remote-tracking branch 'origin/master' into feature/recompiler_improvements
This commit is contained in:
@@ -517,10 +517,12 @@ load_profile_samples(int profile_id)
|
||||
}
|
||||
}
|
||||
|
||||
#ifdef ENABLE_FDD_LOG
|
||||
/* Load BIOS vendor-specific POST mode seek samples if configured */
|
||||
static const char *bios_names[] = {
|
||||
"UNKNOWN", "AMI", "AWARD", "PHOENIX", "IBM", "COMPAQ", "OTHER"
|
||||
};
|
||||
#endif
|
||||
|
||||
for (int vendor = 1; vendor < BIOS_VENDOR_COUNT; vendor++) {
|
||||
if (config->bios_post_seek_up[vendor][idx].filename[0]) {
|
||||
|
||||
@@ -149,7 +149,7 @@ SettingsFloppyCDROM::SettingsFloppyCDROM(QWidget *parent)
|
||||
|
||||
#ifndef DISABLE_FDD_AUDIO
|
||||
// Get the profile name from the configuration system
|
||||
const char *name = fdd_audio_get_profile_internal_name(prof);
|
||||
const char *name = fdd_audio_get_profile_name(prof);
|
||||
if (name) {
|
||||
profName = QString(name);
|
||||
} else {
|
||||
@@ -449,7 +449,7 @@ SettingsFloppyCDROM::on_comboBoxFloppyAudio_activated(int)
|
||||
|
||||
#ifndef DISABLE_FDD_AUDIO
|
||||
// Get the profile name from the configuration system
|
||||
const char *name = fdd_audio_get_profile_internal_name(prof);
|
||||
const char *name = fdd_audio_get_profile_name(prof);
|
||||
if (name) {
|
||||
profName = name;
|
||||
} else {
|
||||
|
||||
Reference in New Issue
Block a user