rawinput: fix signed range values (#653)

## Link to GitHub Issue or related Pull Request, if one exists
n/a

## Description of change
Official GuitarFreaks controller has the motion sensor values with
`valuemin=-127` to `valuemax=127` and we don't deal with negative values
correctly.

## Testing
tbd
This commit is contained in:
bicarus
2026-04-21 22:56:27 -07:00
committed by GitHub
parent 19d93f4ffd
commit 1147ed9858
2 changed files with 11 additions and 20 deletions
+1 -1
View File
@@ -99,7 +99,7 @@ namespace rawinput::touch {
// check type
if (device->type != HID) {
log_fatal("rawinput", "touch update called on non HID device");
log_warning("rawinput", "touch update called on non HID device");
return;
}