aboutsummaryrefslogtreecommitdiffstats
path: root/gui/stmdsp.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'gui/stmdsp.hpp')
-rw-r--r--gui/stmdsp.hpp7
1 files changed, 6 insertions, 1 deletions
diff --git a/gui/stmdsp.hpp b/gui/stmdsp.hpp
index d56a1ab..c15633a 100644
--- a/gui/stmdsp.hpp
+++ b/gui/stmdsp.hpp
@@ -24,7 +24,12 @@ namespace stmdsp
class scanner
{
private:
- constexpr static const char *STMDSP_USB_ID = "USB VID:PID=0483:5740";
+ constexpr static const char *STMDSP_USB_ID =
+#ifndef STMDSP_WIN32
+ "USB VID:PID=0483:5740";
+#else
+ "USB\\VID_0483&PID_5740";
+#endif
public:
std::list<std::string>& scan();