Update explanation theory of joystick control authored by Jeffrey George Fisher's avatar Jeffrey George Fisher
......@@ -20,7 +20,7 @@ Goals:
### Transformation
The `SDL` library returns joystick axes with the C type `int16_t`, which is a signed 16-bit integer. The range of that type is $[-2^{15}, 2^{15} - 1] = [-32768, 32767]$ ($2^{15}$ rather than $2^{16}$ because it is a signed integer).
The `SDL` library returns joystick axes with the C type `int16_t`, which is a signed 16-bit integer. The range of that type is $\nobreak{[-2^{15}, 2^{15} - 1] = [-32768, 32767]}$ ($2^{15}$ rather than $2^{16}$ because it is a signed integer).
## Arcade control
......
......