diff options
| author | ptitSeb <sebastien.chev@gmail.com> | 2023-02-19 10:04:27 +0100 |
|---|---|---|
| committer | ptitSeb <sebastien.chev@gmail.com> | 2023-02-19 10:04:27 +0100 |
| commit | a379b4aab880201110be9292747117338446271f (patch) | |
| tree | 3f29db5d533d0e2d1764f236113dd86fe245199f /src/custommem.c | |
| parent | 3b8d6ef208d4a3f5d3402977b0978f9a294e8aae (diff) | |
| download | box64-a379b4aab880201110be9292747117338446271f.tar.gz box64-a379b4aab880201110be9292747117338446271f.zip | |
[DYNAREC] Small optim on getDB
Diffstat (limited to 'src/custommem.c')
| -rw-r--r-- | src/custommem.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/custommem.c b/src/custommem.c index 8b7a5a47..00e24246 100644 --- a/src/custommem.c +++ b/src/custommem.c @@ -766,8 +766,6 @@ dynablock_t* getDB(uintptr_t addr) }*/ uintptr_t ret = (uintptr_t)box64_jmptbl3[idx3][idx2][idx1][idx0]; - if(ret==(uintptr_t)native_next) - return NULL; return *(dynablock_t**)(ret - sizeof(void*)); } |