diff options
author | Hexxellor | 2017-03-28 15:32:26 -0500 |
---|---|---|
committer | devnoname120 | 2017-03-28 22:32:26 +0200 |
commit | 5568baf51c4b787ff3ce338948bc6faed34c2320 (patch) | |
tree | 3452914d79092392b496b0611bdccf3f67a4b818 /include/user/ctrl.h | |
parent | Added 3 SceSysclibForDriver NIDs (diff) | |
download | vds-libraries-5568baf51c4b787ff3ce338948bc6faed34c2320.tar.gz |
Typo fixing, and misnamed struct (#151)
* Fixing Mostly Harmless Typos
This fixes a bunch of miscellaneous typos and grammatical mistakes in
the source which were mostly harmless with the exception of the
ScreenShotParam in psp2/screenshot.h which didn’t match the name of the
struct causing it to fail when using that header.
Diffstat (limited to '')
-rw-r--r-- | include/user/ctrl.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/user/ctrl.h b/include/user/ctrl.h index 0064614..f8f5679 100644 --- a/include/user/ctrl.h +++ b/include/user/ctrl.h @@ -49,7 +49,7 @@ enum SceCtrlExternalInputMode { /** Controller mode. */ enum SceCtrlPadInputMode { - /** Digitial buttons only. */ + /** Digital buttons only. */ SCE_CTRL_MODE_DIGITAL = 0, /** Digital buttons + Analog support. */ SCE_CTRL_MODE_ANALOG = 1, @@ -167,7 +167,7 @@ int sceCtrlReadBufferPositive(int port, SceCtrlData *pad_data, int count); /** * Get the controller extended state information (blocking, positive logic). * - * This function will bind L/R tringger value to L1/R1 instead of LTRIGGER/RTRIGGER + * This function will bind L/R trigger value to L1/R1 instead of LTRIGGER/RTRIGGER * * @param[in] port - use 0. * @param[out] *pad_data - see ::SceCtrlData. |