mirror of
https://github.com/melonDS-emu/melonDS.git
synced 2024-11-14 05:17:40 -07:00
remove macOS checks I forgot about
This commit is contained in:
parent
bd1cf478ad
commit
187e86ea3b
@ -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},
|
||||
|
@ -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);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user