mirror of
https://github.com/melonDS-emu/melonDS.git
synced 2025-07-23 14:19:55 -06:00
jit: make everything configurable
This commit is contained in:
@ -37,6 +37,9 @@ char DSiBIOS7Path[1024];
|
||||
char DSiFirmwarePath[1024];
|
||||
char DSiNANDPath[1024];
|
||||
|
||||
bool JIT_Enable = false;
|
||||
int JIT_MaxBlockSize = 12;
|
||||
|
||||
ConfigEntry ConfigFile[] =
|
||||
{
|
||||
{"BIOS9Path", 1, BIOS9Path, 0, "", 1023},
|
||||
@ -48,6 +51,9 @@ ConfigEntry ConfigFile[] =
|
||||
{"DSiFirmwarePath", 1, DSiFirmwarePath, 0, "", 1023},
|
||||
{"DSiNANDPath", 1, DSiNANDPath, 0, "", 1023},
|
||||
|
||||
{"JIT_Enable", 0, &JIT_Enable, 0, NULL, 0},
|
||||
{"JIT_MaxBlockSize", 0, &JIT_MaxBlockSize, 10, NULL, 0},
|
||||
|
||||
{"", -1, NULL, 0, NULL, 0}
|
||||
};
|
||||
|
||||
|
Reference in New Issue
Block a user