1
0
Fork 0
mirror of https://github.com/Atmosphere-NX/Atmosphere.git synced 2024-11-08 13:11:49 +00:00

kern: fix operation type enum-value whoops

This commit is contained in:
Michael Scire 2023-10-11 10:12:54 -07:00
parent 7728efce67
commit baceaf9f84

View file

@ -88,8 +88,8 @@ namespace ams::kern {
enum OperationType {
OperationType_Map = 0,
OperationType_MapGroup = 2,
OperationType_MapFirstGroup = 1,
OperationType_MapGroup = 1,
OperationType_MapFirstGroup = 2,
OperationType_Unmap = 3,
OperationType_ChangePermissions = 4,
OperationType_ChangePermissionsAndRefresh = 5,