diff options
author | Sergi Granell | 2019-01-07 12:13:52 +0100 |
---|---|---|
committer | GitHub | 2019-01-07 12:13:52 +0100 |
commit | e87bfc9da44d8750cddaa37ac5194dd51a4474b2 (patch) | |
tree | 4554dcfbeb9b6debeb84907bdb718aa905a70615 | |
parent | Fix SceSdif duplicate functions (#383) (diff) | |
parent | Minor UDCD fixes (diff) | |
download | vds-libraries-e87bfc9da44d8750cddaa37ac5194dd51a4474b2.tar.gz |
Merge pull request #385 from xerpi/master
Minor UDCD fixes
-rw-r--r-- | include/kernel/udcd.h | 4 | ||||
-rw-r--r-- | include/user/udcd.h | 6 |
2 files changed, 5 insertions, 5 deletions
diff --git a/include/kernel/udcd.h b/include/kernel/udcd.h index 1c2552c..51e6287 100644 --- a/include/kernel/udcd.h +++ b/include/kernel/udcd.h @@ -387,9 +387,9 @@ typedef struct SceUdcdDeviceInfo { unsigned char info[64]; } SceUdcdDeviceInfo; -typedef struct { +typedef struct SceUdcdWaitParam { int unk_00; - int unk_04; + int status; int unk_08; int unk_0C; int unk_10; diff --git a/include/user/udcd.h b/include/user/udcd.h index fb740be..eec370f 100644 --- a/include/user/udcd.h +++ b/include/user/udcd.h @@ -33,16 +33,16 @@ typedef struct { uint8_t info[64]; } SceUdcdDeviceInfo; -typedef struct { +typedef struct SceUdcdWaitParam { int unk_00; - int unk_04; + int status; int unk_08; int unk_0C; int unk_10; const char *driverName; } SceUdcdWaitParam; -typedef struct { +typedef struct SceUdcdDeviceState { int unk_00; int state; int cable; |