git.y1.nz

SameBoy

Accurate GB/GBC emulator
download: https://git.y1.nz/archives/sameboy.tar.gz
README | Files | Log | Refs | LICENSE

commit 8cb4085218d0b96436796dff2a2c2adb87bc5acb
parent 803abd9925508c308b3cfc44ac9df8a78227d059
Author: Lior Halphon <LIJI32@gmail.com>
Date:   Sat,  8 Jul 2023 00:55:16 +0300

Fix Xbox Wireless Controller support, closes #527

Diffstat:
MJoyKit/JOYHat.m2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/JoyKit/JOYHat.m b/JoyKit/JOYHat.m @@ -51,7 +51,7 @@ - (bool)updateState { - unsigned state = ([_element value] - _element.min) * 360.0 / self.resolution; + signed state = ([_element value] - _element.min) * 360.0 / self.resolution; if (_state != state) { _state = state; return true;

This webpage is intended to be an accessible preview of this repository. To get a fuller picture, clone it and use the git CLI.