Skip to content

Commit 7ca38a8

Browse files
committed
fix issue #158: STRIG function - buttons mapped to wrong joystick
1 parent 504bb2f commit 7ca38a8

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

pcbasic/basic/inputs/stick.py

+3-2
Original file line numberDiff line numberDiff line change
@@ -88,8 +88,9 @@ def strig_(self, args):
8888
fn, = args
8989
fn = values.to_int(fn)
9090
error.range_check(0, 7, fn)
91-
# 0,1 -> [0][0] 2,3 -> [0][1] 4,5-> [1][0] 6,7 -> [1][1]
92-
joy, trig = fn // 4, (fn//2) % 2
91+
# [stick][button]
92+
# 0,1 -> [stick 0][button 0] 2,3 -> [1][0] 4,5-> [0][1] 6,7 -> [1][1]
93+
joy, trig = (fn//2) % 2, fn // 4
9394
if fn % 2 == 0:
9495
# has been fired
9596
stick_was_trig = self._was_fired[joy][trig]

0 commit comments

Comments
 (0)