mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-01-31 18:11:31 +02:00
IOS/ES: Mark ioctlv 0x3f as invalid
It's not used in IOS. Looks like they just decided to skip 0x3f.
This commit is contained in:
parent
e92308fe7e
commit
48d02f91a8
@ -516,7 +516,6 @@ IPCCommandResult ES::IOCtlV(const IOCtlVRequest& request)
|
||||
case IOCTL_ES_UNKNOWN_3C:
|
||||
case IOCTL_ES_UNKNOWN_3D:
|
||||
case IOCTL_ES_UNKNOWN_3E:
|
||||
case IOCTL_ES_UNKNOWN_3F:
|
||||
case IOCTL_ES_UNKNOWN_41:
|
||||
case IOCTL_ES_UNKNOWN_42:
|
||||
PanicAlert("IOS-ES: Unimplemented ioctlv 0x%x (%zu in vectors, %zu io vectors)",
|
||||
@ -524,6 +523,7 @@ IPCCommandResult ES::IOCtlV(const IOCtlVRequest& request)
|
||||
request.DumpUnknown(GetDeviceName(), LogTypes::IOS_ES, LogTypes::LERROR);
|
||||
return GetDefaultReply(IPC_EINVAL);
|
||||
|
||||
case IOCTL_ES_INVALID_3F:
|
||||
default:
|
||||
return GetDefaultReply(IPC_EINVAL);
|
||||
}
|
||||
|
@ -185,7 +185,7 @@ private:
|
||||
IOCTL_ES_UNKNOWN_3C = 0x3C,
|
||||
IOCTL_ES_UNKNOWN_3D = 0x3D,
|
||||
IOCTL_ES_UNKNOWN_3E = 0x3E,
|
||||
IOCTL_ES_UNKNOWN_3F = 0x3F,
|
||||
IOCTL_ES_INVALID_3F = 0x3F,
|
||||
IOCTL_ES_GET_V0_TICKET_FROM_VIEW = 0x40,
|
||||
IOCTL_ES_UNKNOWN_41 = 0x41,
|
||||
IOCTL_ES_UNKNOWN_42 = 0x42,
|
||||
|
Loading…
Reference in New Issue
Block a user