Core/Enums: Fix OpenMode_Max

Former-commit-id: eb356bf9d9469fdaff2b234aa7e61751644843a3
This commit is contained in:
Lynix 2016-01-24 15:22:53 +01:00
parent a19762f7f6
commit cbd73a9ac0
1 changed files with 2 additions and 2 deletions

View File

@ -86,7 +86,7 @@ namespace Nz
OpenMode_ReadWrite = OpenMode_ReadOnly | OpenMode_WriteOnly, // Ouvre en lecture/écriture
OpenMode_Max = OpenMode_WriteOnly
OpenMode_Max = OpenMode_WriteOnly*2 - 1
};
enum ParameterType
@ -177,7 +177,7 @@ namespace Nz
StreamOption_Sequential = 0x1,
StreamOption_Text = 0x2,
StreamOption_Max = StreamOption_Text*2-1
StreamOption_Max = StreamOption_Text*2 - 1
};
enum Ternary