diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2020-01-27 15:56:40 +0100 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2020-01-27 15:56:40 +0100 |
commit | f4f8eda8db8d1185df94c209873473663e59a33c (patch) | |
tree | e2d3e60231d67e4836fec2f43bf3c0fef080357a /proto-vjoystick | |
parent | cbfc35985d06b7869bab8a7cc9678a62cdf32ff1 (diff) |
proto/vjoystick: ignore version check
Issue: #1030
Diffstat (limited to 'proto-vjoystick')
-rw-r--r-- | proto-vjoystick/vjoystick.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/proto-vjoystick/vjoystick.cpp b/proto-vjoystick/vjoystick.cpp index ce3af3cc..2962a393 100644 --- a/proto-vjoystick/vjoystick.cpp +++ b/proto-vjoystick/vjoystick.cpp @@ -104,9 +104,11 @@ module_status vjoystick::initialize() if (!vJoyEnabled()) msg = tr("vjoystick won't work without the driver installed."); +#if 0 else if (WORD VerDll, VerDrv; !DriverMatch(&VerDll, &VerDrv)) msg = tr("driver/SDK version mismatch (dll 0x%1, driver 0x%2)") .arg(QString::number(VerDll, 16), QString::number(VerDrv, 16)); +#endif else { int code; |