]> git.sesse.net Git - nageru/commitdiff
Clearly mark card type in the description.
authorSteinar H. Gunderson <sgunderson@bigfoot.com>
Sat, 2 Apr 2016 17:29:23 +0000 (19:29 +0200)
committerSteinar H. Gunderson <sgunderson@bigfoot.com>
Sat, 2 Apr 2016 17:29:23 +0000 (19:29 +0200)
bmusb
decklink_capture.cpp

diff --git a/bmusb b/bmusb
index a5e46ba4b478f7fae63f3032e574208c0e69cc11..3947e570dc2ab15f4993d0fa4cfd44d8070f0107 160000 (submodule)
--- a/bmusb
+++ b/bmusb
@@ -1 +1 @@
-Subproject commit a5e46ba4b478f7fae63f3032e574208c0e69cc11
+Subproject commit 3947e570dc2ab15f4993d0fa4cfd44d8070f0107
index df8b668f28c26b4552bb3fa0b07e297934999ed4..e45f95988a32a7d8a7a2703426a32e39b2a39a09 100644 (file)
@@ -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;
        }