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:
parent
7728efce67
commit
baceaf9f84
1 changed files with 2 additions and 2 deletions
|
@ -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,
|
||||
|
|
Loading…
Reference in a new issue