diff options
-rw-r--r-- | sftsr.c | 2 | ||||
-rw-r--r-- | sftsr.h | 2 |
2 files changed, 4 insertions, 0 deletions
@@ -1148,9 +1148,11 @@ static bool int2f_11_handler(union INTPACK r) return true; } +#if TRACE_CALLS dlog_print("2f al="); dlog_printx(r.h.al); dlog_endline(); +#endif // Handle special functions that target all redirectors first switch (r.h.al) { @@ -29,6 +29,8 @@ #define VERSION_MAJOR 0 #define VERSION_MINOR 2 +#define TRACE_CALLS 0 + #define LASTDRIVE 'Z' #define MAX_NUM_DRIVE (LASTDRIVE - 'A') #define NUM_DRIVES (MAX_NUM_DRIVE + 1) |