pspctrl.h: Attempt to add newlines to doxygen output

This commit is contained in:
Felix-Dev
2021-04-05 22:41:46 +02:00
committed by GitHub
parent e6773cc928
commit 75f47de778

View File

@@ -109,16 +109,16 @@ typedef struct SceCtrlData {
* states for each button: * states for each button:
* *
* • [make]: The button has just been pressed with its prior state being the released state. Transition from * • [make]: The button has just been pressed with its prior state being the released state. Transition from
* 'released' state to 'pressed' state. * 'released' state to 'pressed' state.\n
* • [press]: The button is currently in the 'pressed' state. * • [press]: The button is currently in the 'pressed' state.\n
* • [break]: The button has just been released with its prior state being the 'pressed' state. Transition from * • [break]: The button has just been released with its prior state being the 'pressed' state. Transition from
* 'pressed' state to 'release' state. * 'pressed' state to 'release' state.\n
* • [release]: The button is currently in the 'released' state. * • [release]: The button is currently in the 'released' state.\n
* *
* It is possible for a button to (briefly) be in two states at the same time. Valid combinations are as follows: * It is possible for a button to (briefly) be in two states at the same time. Valid combinations are as follows:
* *
* • [make] & [press] * • [make] & [press]\n
* • [break] & [release] * • [break] & [release]\n
* *
* In other words, if a button is in the [make] state, then it is also in the [press] state. However, this is not the case * In other words, if a button is in the [make] state, then it is also in the [press] state. However, this is not the case
* for the inverse. A button in the [press] state does not need to be in the [make] state. * for the inverse. A button in the [press] state does not need to be in the [make] state.