Skip to content

Commit

Permalink
refactor: change uint32_t to UInt32
Browse files Browse the repository at this point in the history
  • Loading branch information
VisualEhrmanntraut committed Nov 2, 2024
1 parent 299e1d9 commit b12fc2b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions NootedRed/AMDCommon.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -387,13 +387,13 @@ enum VideoMemoryType : UInt32 {

struct CosReadConfigurationSettingInput {
const char *settingName;
uint32_t settingType;
uint32_t outLen;
UInt32 settingType;
UInt32 outLen;
void *outPtr;
};

struct CosReadConfigurationSettingOutput {
uint32_t settingLen;
UInt32 settingLen;
};

//-------- AMD Catalyst Constants --------//
Expand Down
2 changes: 1 addition & 1 deletion NootedRed/X5000.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ class X5000 {
static void *wrapObtainAccelChannelGroup(void *that, UInt32 priority);
static void *wrapObtainAccelChannelGroup1304(void *that, UInt32 priority, void *task);
static UInt32 wrapHwlConvertChipFamily(void *that, UInt32 family, UInt32 revision);
static bool wrapGetNumericProperty(void *that, const char *name, uint32_t *value);
static bool wrapGetNumericProperty(void *that, const char *name, UInt32 *value);
};

//------ Patterns ------//
Expand Down

0 comments on commit b12fc2b

Please sign in to comment.