From b12fc2b82b9827cf0f113b1ba46d008b74d6762f Mon Sep 17 00:00:00 2001 From: Visual Ehrmanntraut <30368284+VisualEhrmanntraut@users.noreply.github.com> Date: Sat, 2 Nov 2024 21:31:15 +0200 Subject: [PATCH] refactor: change uint32_t to UInt32 --- NootedRed/AMDCommon.hpp | 6 +++--- NootedRed/X5000.hpp | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/NootedRed/AMDCommon.hpp b/NootedRed/AMDCommon.hpp index a5363859..7aa7bdd3 100644 --- a/NootedRed/AMDCommon.hpp +++ b/NootedRed/AMDCommon.hpp @@ -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 --------// diff --git a/NootedRed/X5000.hpp b/NootedRed/X5000.hpp index fbb27e87..de709041 100644 --- a/NootedRed/X5000.hpp +++ b/NootedRed/X5000.hpp @@ -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 ------//