From 9afe1d74b8ff4b640c2be34fef6e0be06f242e2f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Dr=C3=B6ge?= Date: Mon, 15 Jul 2019 18:00:51 +0300 Subject: [PATCH] Set on_program to true by default in the Tally --- src/ndi.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ndi.rs b/src/ndi.rs index 355b0362..e811868e 100644 --- a/src/ndi.rs +++ b/src/ndi.rs @@ -280,7 +280,7 @@ unsafe impl Send for Tally {} impl Default for Tally { fn default() -> Self { Self(NDIlib_tally_t { - on_program: false, + on_program: true, on_preview: false, }) }