diff options
| author | ptitSeb <sebastien.chev@gmail.com> | 2024-02-03 17:59:11 +0100 |
|---|---|---|
| committer | ptitSeb <sebastien.chev@gmail.com> | 2024-02-03 17:59:18 +0100 |
| commit | f18f5c9b85feecb3b5d1744b2cfaf5a2fe6068b5 (patch) | |
| tree | 87782f7d2449e5fb6df1242f98f94eb7ab444b0d /src/main.c | |
| parent | d5808f6be310d816b18f4f52dd8c4961698a3bf0 (diff) | |
| download | box64-f18f5c9b85feecb3b5d1744b2cfaf5a2fe6068b5.tar.gz box64-f18f5c9b85feecb3b5d1744b2cfaf5a2fe6068b5.zip | |
[DYNAREC_TEST] Force enabled x87double when using DYNAREC_TEST to limit false positive
Diffstat (limited to 'src/main.c')
| -rw-r--r-- | src/main.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/main.c b/src/main.c index 1e26cce6..ed3a1525 100644 --- a/src/main.c +++ b/src/main.c @@ -735,6 +735,7 @@ void LoadLogEnv() if(box64_dynarec_test) { box64_dynarec_fastnan = 0; box64_dynarec_fastround = 0; + box64_dynarec_x87double = 1; box64_dynarec_callret = 0; printf_log(LOG_INFO, "Dynarec will compare it's execution with the interpreter (super slow, only for testing)\n"); } |