diff --git a/rpcs3/Emu/NP/np_handler.cpp b/rpcs3/Emu/NP/np_handler.cpp index 4f869c4152..6442d54f54 100644 --- a/rpcs3/Emu/NP/np_handler.cpp +++ b/rpcs3/Emu/NP/np_handler.cpp @@ -1532,7 +1532,7 @@ namespace np return; } - rpcn->send_presence(presence_self.pr_com_id, presence_self.pr_title, presence_self.pr_status, presence_self.pr_comment, presence_self.pr_data); + rpcn->send_presence(presence_self.pr_com_id, presence_self.pr_title, presence_self.pr_title_id, presence_self.pr_status, presence_self.pr_comment, presence_self.pr_data); } } diff --git a/rpcs3/Emu/NP/np_handler.h b/rpcs3/Emu/NP/np_handler.h index 16f170f5b7..66f3c8ef50 100644 --- a/rpcs3/Emu/NP/np_handler.h +++ b/rpcs3/Emu/NP/np_handler.h @@ -509,7 +509,7 @@ namespace np { SceNpCommunicationId pr_com_id; std::string pr_title; - std::string pr_title_id; + std::string pr_title_id = "vsh.idle"; std::string pr_status; std::string pr_comment; std::vector pr_data;