TEGRAX1 config also have BOX64_MMAP32 activated by default

This commit is contained in:
ptitSeb 2024-02-07 16:42:13 +01:00
parent 315068b111
commit 6996c06909
2 changed files with 2 additions and 2 deletions

View File

@ -107,7 +107,7 @@ Call XInitThreads when loading X11. (This is mostly for old Loki games with the
#### BOX64_MMAP32 *
Will use 32bits address in priority for external MMAP (when 32bits process are detected)
* 0 : Use regular mmap (default, except for Snapdragron build)
* 1 : Use 32bits address space mmap in priority for external mmap as soon a 32bits process are detected (default for Snapdragon build)
* 1 : Use 32bits address space mmap in priority for external mmap as soon a 32bits process are detected (default for SnapDragon and TegraX1 build)
#### BOX64_IGNOREINT3 *
What to do when a CC INT3 opcode is encounter in the code being run

View File

@ -51,7 +51,7 @@ int box64_inprocessgpu = 0;
int box64_malloc_hack = 0;
int box64_dynarec_test = 0;
int box64_maxcpu = 0;
#if defined(SD845) || defined(SD888) || defined(SD8G2)
#if defined(SD845) || defined(SD888) || defined(SD8G2) || defined(TEGRAX1)
int box64_mmap32 = 1;
#else
int box64_mmap32 = 0;