From: Steinar H. Gunderson Date: Sat, 2 Apr 2016 17:29:23 +0000 (+0200) Subject: Clearly mark card type in the description. X-Git-Tag: 1.2.0~27 X-Git-Url: https://git.sesse.net/?a=commitdiff_plain;h=83f684d3bbb19afbc990b3c290fdfc1877d64ff3;p=nageru Clearly mark card type in the description. --- 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; }