mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-29 00:59:44 -06:00
IOS: Include the UID and GID in open requests
Accuracy change. Required to implement ES contexts properly.
This commit is contained in:
@ -92,6 +92,10 @@ struct OpenRequest final : Request
|
||||
{
|
||||
std::string path;
|
||||
OpenMode flags = IOS_OPEN_READ;
|
||||
// The UID and GID are not part of the IPC request sent from the PPC to the Starlet,
|
||||
// but they are set after they reach IOS and are dispatched to the appropriate module.
|
||||
u32 uid = 0;
|
||||
u16 gid = 0;
|
||||
explicit OpenRequest(u32 address);
|
||||
};
|
||||
|
||||
|
Reference in New Issue
Block a user