This website works better with JavaScript.
Home
Help
Sign In
VCVRack
/
Rack
mirror of
https://github.com/VCVRack/Rack.git
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
43
Wiki
Activity
Browse Source
Fix Bridge port name for ID=-1
tags/v0.6.1
Andrew Belt
7 years ago
parent
caf3f7abe7
commit
19aa563f0a
1 changed files
with
2 additions
and
0 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+2
-0
src/bridge.cpp
+ 2
- 0
src/bridge.cpp
View File
@@ -382,6 +382,8 @@ std::vector<int> BridgeMidiDriver::getInputDeviceIds() {
}
std::string BridgeMidiDriver::getInputDeviceName(int deviceId) {
if (deviceId < 0)
return "";
return stringf("Port %d", deviceId + 1);
}
Write
Preview
Loading…
Cancel
Save