From e68057affb63d5786905415f4fe6995decce90ed Mon Sep 17 00:00:00 2001 From: emoose Date: Tue, 23 Jul 2019 19:22:45 +0100 Subject: [PATCH] [Kernel] Update profile-gpds to work with latest master --- src/xenia/kernel/xam/xam_user.cc | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/src/xenia/kernel/xam/xam_user.cc b/src/xenia/kernel/xam/xam_user.cc index 34e64db8d..306bada4d 100644 --- a/src/xenia/kernel/xam/xam_user.cc +++ b/src/xenia/kernel/xam/xam_user.cc @@ -52,8 +52,7 @@ dword_result_t XamProfileCreateEnumerator(dword_t device_id, *handle_out = e->handle(); return X_ERROR_SUCCESS; } -DECLARE_XAM_EXPORT(XamProfileCreateEnumerator, - ExportTag::kUserProfiles | ExportTag::kImplemented); +DECLARE_XAM_EXPORT1(XamProfileCreateEnumerator, kUserProfiles, kImplemented); dword_result_t XamProfileEnumerate(dword_t handle, dword_t flags, lpvoid_t buffer, @@ -97,8 +96,7 @@ dword_result_t XamProfileEnumerate(dword_t handle, dword_t flags, return X_ERROR_INVALID_PARAMETER; } } -DECLARE_XAM_EXPORT(XamProfileEnumerate, - ExportTag::kUserProfiles | ExportTag::kImplemented); +DECLARE_XAM_EXPORT1(XamProfileEnumerate, kUserProfiles, kImplemented); X_HRESULT_result_t XamUserGetXUID(dword_t user_index, dword_t unk, lpqword_t xuid_ptr) {