Skip to content

Commit

Permalink
[Xlivebase] Fixed pointer in friends enumerator
Browse files Browse the repository at this point in the history
  • Loading branch information
AdrianCassar committed Dec 3, 2023
1 parent d33e4f9 commit aa89fb2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/xenia/kernel/xam/apps/xlivebase_app.cc
Original file line number Diff line number Diff line change
Expand Up @@ -238,7 +238,7 @@ X_HRESULT XLiveBaseApp::CreateFriendsEnumerator(uint32_t buffer_args) {
make_object<XStaticUntypedEnumerator>(kernel_state_, friends_amount, 0);
auto result = e->Initialize(-1, app_id(), 0x58021, 0x58022, 0, 0x10, nullptr);

*handle_ptr = (uint32_t)e->handle();
*handle_ptr = xe::byte_swap<uint32_t>(e->handle());
return X_E_SUCCESS;
}

Expand Down

0 comments on commit aa89fb2

Please sign in to comment.