about summary refs log tree commit diff stats
path: root/src/include/debug.h
diff options
context:
space:
mode:
authorptitSeb <sebastien.chev@gmail.com>2021-03-22 22:55:49 +0100
committerptitSeb <sebastien.chev@gmail.com>2021-03-22 22:55:49 +0100
commitdce3292fc7134d7a32ce7de0b5e5d7e7ea4beb04 (patch)
tree6679fec30d40cd4e379b87a25feb1616f06d5dab /src/include/debug.h
parent98a567e102305e0b50b3330ee04e2ddc11630a8f (diff)
downloadbox64-dce3292fc7134d7a32ce7de0b5e5d7e7ea4beb04.tar.gz
box64-dce3292fc7134d7a32ce7de0b5e5d7e7ea4beb04.zip
[DYNAREC] Added 0F BE/BF ocpodes, and fixed LDRSB emitter
Diffstat (limited to 'src/include/debug.h')
-rwxr-xr-xsrc/include/debug.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/include/debug.h b/src/include/debug.h
index 61071b48..0f2de170 100755
--- a/src/include/debug.h
+++ b/src/include/debug.h
@@ -37,7 +37,7 @@ extern FILE* ftrace;
 
 #define printf_log(L, ...) do {if(L<=box64_log) {fprintf(ftrace, __VA_ARGS__); fflush(ftrace);}} while(0)
 
-#define dynarec_log(L, ...) do {if(L<=box64_dynarec_log) {fprintf(ftrace, __VA_ARGS__); /*fflush(ftrace);*/}} while(0)
+#define dynarec_log(L, ...) do {if(L<=box64_dynarec_log) {fprintf(ftrace, __VA_ARGS__); fflush(ftrace);}} while(0)
 
 #define EXPORT __attribute__((visibility("default")))
 #ifdef BUILD_DYNAMIC