From 83f684d3bbb19afbc990b3c290fdfc1877d64ff3 Mon Sep 17 00:00:00 2001 From: "Steinar H. Gunderson" Date: Sat, 2 Apr 2016 19:29:23 +0200 Subject: [PATCH] Clearly mark card type in the description. --- bmusb | 2 +- decklink_capture.cpp | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/bmusb b/bmusb index a5e46ba..3947e57 160000 --- a/bmusb +++ b/bmusb @@ -1 +1 @@ -Subproject commit a5e46ba4b478f7fae63f3032e574208c0e69cc11 +Subproject commit 3947e570dc2ab15f4993d0fa4cfd44d8070f0107 diff --git a/decklink_capture.cpp b/decklink_capture.cpp index df8b668..e45f959 100644 --- a/decklink_capture.cpp +++ b/decklink_capture.cpp @@ -140,9 +140,9 @@ DeckLinkCapture::DeckLinkCapture(IDeckLink *card, int card_index) const char *model_name; char buf[256]; if (card->GetModelName(&model_name) == S_OK) { - snprintf(buf, sizeof(buf), "Card %d: %s", card_index, model_name); + snprintf(buf, sizeof(buf), "PCI card %d: %s", card_index, model_name); } else { - snprintf(buf, sizeof(buf), "Card %d: Unknown DeckLink card", card_index); + snprintf(buf, sizeof(buf), "PCI card %d: Unknown DeckLink card", card_index); } description = buf; } -- 2.39.2