Emit the PRV event via debug as well

This commit is contained in:
Rodrigo Arias 2021-10-14 09:09:14 +02:00
parent b9f9ae1a59
commit 2fbe95b4f7

1
prv.c
View File

@ -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);
}