From 2fbe95b4f76262db58f5389524a6c0497a12124e Mon Sep 17 00:00:00 2001 From: Rodrigo Arias Date: Thu, 14 Oct 2021 09:09:14 +0200 Subject: [PATCH] Emit the PRV event via debug as well --- prv.c | 1 + 1 file changed, 1 insertion(+) diff --git a/prv.c b/prv.c index caa5c74..5e6b96a 100644 --- a/prv.c +++ b/prv.c @@ -8,6 +8,7 @@ void prv_ev(FILE *f, int row, int64_t time, int type, int val) { + dbg("<<< 2:0:1:1:%d:%ld:%d:%d\n", row, time, type, val); fprintf(f, "2:0:1:1:%d:%ld:%d:%d\n", row, time, type, val); }