diff options
| author | ptitSeb <sebastien.chev@gmail.com> | 2024-08-18 15:57:14 +0200 |
|---|---|---|
| committer | ptitSeb <sebastien.chev@gmail.com> | 2024-08-18 15:57:14 +0200 |
| commit | f1da5d433a707a1308732884c455ae50ffbe4fe1 (patch) | |
| tree | 2c808795c6b2d138607a7d33c23ae9ab18d6c325 /src | |
| parent | c384d53d75bb082ecbbbd4741f9b9a340ee912a0 (diff) | |
| download | box64-f1da5d433a707a1308732884c455ae50ffbe4fe1.tar.gz box64-f1da5d433a707a1308732884c455ae50ffbe4fe1.zip | |
[RV64_DYNAREC] Set the log level to Info for the LOCK CMPXCHG16B warning, to avoid breaking winetricks
Diffstat (limited to 'src')
| -rw-r--r-- | src/dynarec/rv64/dynarec_rv64_f0.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dynarec/rv64/dynarec_rv64_f0.c b/src/dynarec/rv64/dynarec_rv64_f0.c index 30533be4..86f28453 100644 --- a/src/dynarec/rv64/dynarec_rv64_f0.c +++ b/src/dynarec/rv64/dynarec_rv64_f0.c @@ -288,7 +288,7 @@ uintptr_t dynarec64_F0(dynarec_rv64_t* dyn, uintptr_t addr, uintptr_t ip, int ni if (rex.w) { INST_NAME("LOCK CMPXCHG16B Gq, Eq"); static int warned = 0; - PASS3(if (!warned) dynarec_log(LOG_NONE, "Warning, LOCK CMPXCHG16B is not well supported on RISC-V and issues are expected.\n")); + PASS3(if (!warned) dynarec_log(LOG_INFO, "Warning, LOCK CMPXCHG16B is not well supported on RISC-V and issues are expected.\n")); warned = 1; } else { INST_NAME("LOCK CMPXCHG8B Gq, Eq"); |