diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2020-01-16 09:12:49 +0100 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2020-01-16 09:12:49 +0100 |
commit | 901e06488ae89ff57362a0be534a45eccccbf67a (patch) | |
tree | e62c58fc14e0c7d7add46241e56e16480337bc0f /proto-vjoystick | |
parent | cdea6dd8381b907aabea10f0bc2ee7ef59701625 (diff) |
proto/vjoystick: log version numbers
Issue: #1030
Diffstat (limited to 'proto-vjoystick')
-rw-r--r-- | proto-vjoystick/vjoystick.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/proto-vjoystick/vjoystick.cpp b/proto-vjoystick/vjoystick.cpp index f322ced9..bf8f3cea 100644 --- a/proto-vjoystick/vjoystick.cpp +++ b/proto-vjoystick/vjoystick.cpp @@ -105,7 +105,7 @@ module_status vjoystick::initialize() if (!vJoyEnabled()) msg = tr("vjoystick won't work without the driver installed."); else if (WORD VerDll, VerDrv; !DriverMatch(&VerDll, &VerDrv)) - msg = tr("driver/SDK version mismatch"); + msg = tr("driver/SDK version mismatch (dll 0x%1, driver 0x%2)", (void*)VerDll, (void*)VerDrv); else { int code; |