mirror of
https://github.com/pspdev/pspsdk.git
synced 2025-10-04 09:08:30 +00:00
Merge pull request #207 from pspdev/fix-pspUtilityDialogCommon-doc
Make pspUtilityDialogCommon doc strings fit the member
This commit is contained in:
@@ -13,15 +13,24 @@
|
|||||||
|
|
||||||
typedef struct
|
typedef struct
|
||||||
{
|
{
|
||||||
unsigned int size; /** Size of the structure */
|
/** Size of the structure */
|
||||||
int language; /** Language */
|
unsigned int size;
|
||||||
int buttonSwap; /** Set to 1 for X/O button swap */
|
/** Language */
|
||||||
int graphicsThread; /** Graphics thread priority */
|
int language;
|
||||||
int accessThread; /** Access/fileio thread priority (SceJobThread) */
|
/** Set to 1 for X/O button swap */
|
||||||
int fontThread; /** Font thread priority (ScePafThread) */
|
int buttonSwap;
|
||||||
int soundThread; /** Sound thread priority */
|
/** Graphics thread priority */
|
||||||
int result; /** Result */
|
int graphicsThread;
|
||||||
int reserved[4]; /** Set to 0 */
|
/** 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;
|
} pspUtilityDialogCommon;
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user