From 5568baf51c4b787ff3ce338948bc6faed34c2320 Mon Sep 17 00:00:00 2001 From: Hexxellor Date: Tue, 28 Mar 2017 15:32:26 -0500 Subject: 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.--- include/kernel/ctrl.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'include/kernel/ctrl.h') 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. */ -- cgit v1.2.3