diff --git a/src/core/hle/service/acc/profile_manager.cpp b/src/core/hle/service/acc/profile_manager.cpp index 29a10ad13..4ae024128 100644 --- a/src/core/hle/service/acc/profile_manager.cpp +++ b/src/core/hle/service/acc/profile_manager.cpp @@ -329,7 +329,7 @@ bool ProfileManager::GetProfileBaseAndData(const ProfileInfo& user, ProfileBase& /// Returns if the system is allowing user registrations or not bool ProfileManager::CanSystemRegisterUser() const { - return false; // TODO(ogniK): Games shouldn't have + return true; // TODO(ogniK): Games shouldn't have // access to user registration, when we // emulate qlaunch. Update this to dynamically change. } diff --git a/src/core/hle/service/am/library_applet_self_accessor.cpp b/src/core/hle/service/am/library_applet_self_accessor.cpp index b560f580b..fd7fd6015 100644 --- a/src/core/hle/service/am/library_applet_self_accessor.cpp +++ b/src/core/hle/service/am/library_applet_self_accessor.cpp @@ -302,20 +302,20 @@ void ILibraryAppletSelfAccessor::GetCurrentApplicationId(HLERequestContext& ctx) void ILibraryAppletSelfAccessor::GetMainAppletAvailableUsers(HLERequestContext& ctx) { const Service::Account::ProfileManager manager{}; - bool is_empty{true}; + bool can_select_any_user{}; s32 user_count{-1}; LOG_INFO(Service_AM, "called"); if (manager.GetUserCount() > 0) { - is_empty = false; + can_select_any_user = true; user_count = static_cast(manager.GetUserCount()); ctx.WriteBuffer(manager.GetAllUsers()); } IPC::ResponseBuilder rb{ctx, 4}; rb.Push(ResultSuccess); - rb.Push(is_empty); + rb.Push(can_select_any_user); rb.Push(user_count); } diff --git a/src/core/hle/service/set/system_settings_server.cpp b/src/core/hle/service/set/system_settings_server.cpp index 666ce03cf..6da179213 100644 --- a/src/core/hle/service/set/system_settings_server.cpp +++ b/src/core/hle/service/set/system_settings_server.cpp @@ -306,7 +306,7 @@ ISystemSettingsServer::ISystemSettingsServer(Core::System& system_) SetupSettings(); - Time::Clock::SteadyClockTimePoint timestamp{ + PSC::Time::SteadyClockTimePoint timestamp{ .time_point = 1691079299, .clock_source_id = Common::UUID::MakeRandom(), };