diff options
author | Javier <dev.git@javispedro.com> | 2022-04-15 12:26:02 +0200 |
---|---|---|
committer | Javier <dev.git@javispedro.com> | 2022-04-15 12:26:02 +0200 |
commit | 6af29dacaaea968955ca1690037a9f6e9e0fb0ff (patch) | |
tree | 198a5767bddb241579af09c0153074d8dcdd9f9f /mousmain.c | |
parent | 0f0a806e22895c5b7a6244e951c4f475a25184f8 (diff) | |
download | vbados-6af29dacaaea968955ca1690037a9f6e9e0fb0ff.tar.gz vbados-6af29dacaaea968955ca1690037a9f6e9e0fb0ff.zip |
add log msgs for non-detection of ps2 wheel
Diffstat (limited to 'mousmain.c')
-rw-r--r-- | mousmain.c | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -49,6 +49,9 @@ static int set_wheel(LPTSRDATA data, bool enable) if (data->usewheel) { detect_wheel(data); + if (!data->haswheel) { + fprintf(stderr, "Could not find PS/2 wheel mouse\n"); + } } else { data->haswheel = false; } |