diff options
| author | LagoLunatic <LagoLunatic@users.noreply.github.com> | 2024-03-11 19:03:47 -0400 |
|---|---|---|
| committer | LagoLunatic <LagoLunatic@users.noreply.github.com> | 2024-03-11 19:03:47 -0400 |
| commit | 0dd3f6e47cd372bdf7ea1ea2313bfad80ee4eafe (patch) | |
| tree | f86b73a1401905cde8f58195315365b374ca2db8 /include/f_pc/f_pc_node_req.h | |
| parent | d0e8844b4bce31b72e38c10c3467f23ac69e4072 (diff) | |
Standardize process ID type to be uint
Diffstat (limited to 'include/f_pc/f_pc_node_req.h')
| -rw-r--r-- | include/f_pc/f_pc_node_req.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/f_pc/f_pc_node_req.h b/include/f_pc/f_pc_node_req.h index 5cfc0f69..0f3bed44 100644 --- a/include/f_pc/f_pc_node_req.h +++ b/include/f_pc/f_pc_node_req.h @@ -17,7 +17,7 @@ typedef struct node_create_request_method_class { // needed to match struct copy typedef struct unk_process_node_class { process_node_class* mpNodeProc; - u32 mProcId; + uint mProcId; } unk_process_node_class; typedef struct node_create_request { @@ -30,7 +30,7 @@ typedef struct node_create_request { s32 mRequestId; unk_process_node_class mNodeProc; layer_class* mpLayerClass; - u32 mCreatingID; + uint mCreatingID; s16 mProcName; void* mpUserData; s16 unk_0x60; |
