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/kernel/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 'include/kernel/ctrl.h')
-rw-r--r-- | include/kernel/ctrl.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/kernel/ctrl.h b/include/kernel/ctrl.h index 1a553ef..60ff673 100644 --- a/include/kernel/ctrl.h +++ b/include/kernel/ctrl.h @@ -48,7 +48,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, @@ -226,7 +226,7 @@ int sceCtrlGetButtonIntercept(int *intercept); * @param kernelButtons Emulated buttons of ::SceCtrlPadButtons (you can emulate both user and * kernel buttons). The emulated buttons will only be applied for applications * running in kernel mode. - * @param uiMake Specifies the duration of the emulation. Meassured in sampling counts. + * @param uiMake Specifies the duration of the emulation. Measured in sampling counts. * * @return 0 on success. */ @@ -248,7 +248,7 @@ int sceCtrlSetButtonEmulation(unsigned int port, unsigned char slot, * @param kernel_lY New emulate value for the left joystick's Y-axis (kernelspace). Between 0 - 0xFF. * @param kernel_rX New emulated value for the right joystick's X-axis (kernelspace). Between 0 - 0xFF. * @param kernel_rY New emulate value for the right joystick's Y-axis (kernelspace). Between 0 - 0xFF. - * @param uiMake Specifies the duration of the emulation. Meassured in sampling counts. + * @param uiMake Specifies the duration of the emulation. Measured in sampling counts. * * @return 0 on success. */ |