Skip to content

Commit

Permalink
Fix xboxone_show_account_picker() return value.
Browse files Browse the repository at this point in the history
Its supposed to return an async context ID on success.
  • Loading branch information
yoyo-danielc committed Feb 4, 2022
1 parent 259eaf3 commit 75494be
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions DLL/GDKExtension/GDKX.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -377,10 +377,7 @@ void F_XboxOneShowAccountPicker(RValue& Result, CInstance* selfinst, CInstance*
if (ret < 0)
{
DebugConsoleOutput("xboxone_show_account_picker() failed\n");
Result.val = ret;
}
else
{
Result.val = 0;
}

Result.val = ret;
}

0 comments on commit 75494be

Please sign in to comment.