remove macOS checks I forgot about

This commit is contained in:
Nadia Holmquist Pedersen 2023-10-11 17:58:57 +02:00
parent bd1cf478ad
commit 187e86ea3b
2 changed files with 2 additions and 8 deletions

View File

@ -247,11 +247,7 @@ ConfigEntry ConfigFile[] =
{"JIT_MaxBlockSize", 0, &JIT_MaxBlockSize, 32, false},
{"JIT_BranchOptimisations", 1, &JIT_BranchOptimisations, true, false},
{"JIT_LiteralOptimisations", 1, &JIT_LiteralOptimisations, true, false},
#ifdef __APPLE__
{"JIT_FastMemory", 1, &JIT_FastMemory, false, false},
#else
{"JIT_FastMemory", 1, &JIT_FastMemory, true, false},
#endif
{"JIT_FastMemory", 1, &JIT_FastMemory, true, false},
#endif
{"ExternalBIOSEnable", 1, &ExternalBIOSEnable, false, false},

View File

@ -493,9 +493,7 @@ void EmuSettingsDialog::on_chkEnableJIT_toggled()
bool disabled = !ui->chkEnableJIT->isChecked();
ui->chkJITBranchOptimisations->setDisabled(disabled);
ui->chkJITLiteralOptimisations->setDisabled(disabled);
#ifndef __APPLE__
ui->chkJITFastMemory->setDisabled(disabled);
#endif
ui->chkJITFastMemory->setDisabled(disabled);
ui->spnJITMaximumBlockSize->setDisabled(disabled);
}