mirror of
https://github.com/pspdev/pspsdk.git
synced 2025-10-03 16:51:27 +00:00
Make pspUtilityDialogCommon doc strings fit the member
Currently in the documentation which comment is attached to which member in the pspUtilityDialogCommon struct is wrong. Size does not have a description and all others mismatch. This commit fixes that. See the current state here: http://pspdev.github.io/pspsdk/structpspUtilityDialogCommon.html
This commit is contained in:
@@ -13,15 +13,24 @@
|
||||
|
||||
typedef struct
|
||||
{
|
||||
unsigned int size; /** Size of the structure */
|
||||
int language; /** Language */
|
||||
int buttonSwap; /** Set to 1 for X/O button swap */
|
||||
int graphicsThread; /** Graphics thread priority */
|
||||
int accessThread; /** Access/fileio thread priority (SceJobThread) */
|
||||
int fontThread; /** Font thread priority (ScePafThread) */
|
||||
int soundThread; /** Sound thread priority */
|
||||
int result; /** Result */
|
||||
int reserved[4]; /** Set to 0 */
|
||||
/** Size of the structure */
|
||||
unsigned int size;
|
||||
/** Language */
|
||||
int language;
|
||||
/** Set to 1 for X/O button swap */
|
||||
int buttonSwap;
|
||||
/** Graphics thread priority */
|
||||
int graphicsThread;
|
||||
/** Access/fileio thread priority (SceJobThread) */
|
||||
int accessThread;
|
||||
/** Font thread priority (ScePafThread) */
|
||||
int fontThread;
|
||||
/** Sound thread priority */
|
||||
int soundThread;
|
||||
/** Result */
|
||||
int result;
|
||||
/** Set to 0 */
|
||||
int reserved[4];
|
||||
|
||||
} pspUtilityDialogCommon;
|
||||
|
||||
|
Reference in New Issue
Block a user