diff options
| author | garyscavone <garyscavone@users.noreply.github.com> | 2018-08-27 17:30:42 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-08-27 17:30:42 -0400 |
| commit | 7ff0637a1f0fbbc0af84f2c6441295929e15d0ff (patch) | |
| tree | 7feed966e746f22aa63f4dc7dd13166f06bdb5e4 | |
| parent | f9ba7c277eab1fd866097a88e583cde7239e575a (diff) | |
| parent | 83a17cd9f4d8fdf0f4f8ed8857956d8dd8ce69bf (diff) | |
Merge pull request #156 from spmp/feature/spmp-changes
Add device id to audioprobe output
| -rw-r--r-- | tests/audioprobe.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/audioprobe.cpp b/tests/audioprobe.cpp index 1b93908..c83d3a5 100644 --- a/tests/audioprobe.cpp +++ b/tests/audioprobe.cpp @@ -46,6 +46,7 @@ int main() info = audio.getDeviceInfo(i); std::cout << "\nDevice Name = " << info.name << '\n'; + std::cout << "Device ID = " << i << '\n'; if ( info.probed == false ) std::cout << "Probe Status = UNsuccessful\n"; else { |
