If i run
10 X = STICK(0) ' Read X-axis of joystick 1
20 Y = STICK(1) ' Read Y-axis of joystick 1
30 B1 = STRIG(0) ' Read trigger button 1
45 PRINT "X="; X, "Y="; Y, "Button="; B1
50 GOTO 10
under pcbasic the Y axis is not reading properly it mirrors the X axis for output.
if i run this code under GWBASIC In dos box it works properly reading X and Y separately.
If i run
10 X = STICK(0) ' Read X-axis of joystick 1
20 Y = STICK(1) ' Read Y-axis of joystick 1
30 B1 = STRIG(0) ' Read trigger button 1
45 PRINT "X="; X, "Y="; Y, "Button="; B1
50 GOTO 10
under pcbasic the Y axis is not reading properly it mirrors the X axis for output.
if i run this code under GWBASIC In dos box it works properly reading X and Y separately.