Skip to content
Snippets Groups Projects
Commit 50e27777 authored by Subv's avatar Subv
Browse files

HLE/ACC: Change the default user id to be consistent with what we tell games on startup.

In IApplicationFunctions::PopLaunchParameter we tell the games that they were launched as user id 1.
parent 78dd1cd4
No related branches found
No related tags found
No related merge requests found
......@@ -30,8 +30,7 @@ struct ProfileBase {
};
static_assert(sizeof(ProfileBase) == 0x38, "ProfileBase structure has incorrect size");
using Uid = std::array<u64, 2>;
static constexpr Uid DEFAULT_USER_ID{0x10ull, 0x20ull};
static constexpr u128 DEFAULT_USER_ID{1ull, 0ull};
class IProfile final : public ServiceFramework<IProfile> {
public:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment