1
0
Fork 0
mirror of https://github.com/Atmosphere-NX/Atmosphere.git synced 2024-09-19 21:43:29 +01:00

kern: fix operation type enum-value whoops

This commit is contained in:
Michael Scire 2023-10-11 10:12:54 -07:00 committed by SciresM
parent 11c02e22e0
commit 06a840e550

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,