Axiom.Plugins.DevILCodecs.ILUtil.ILabs C# (CSharp) Method

ILabs() static private method

static private ILabs ( int val ) : int
val int
return int
		static private int ILabs( int val )
		{
			switch ( val )
			{
				case Il.IL_INT:
					return Il.IL_UNSIGNED_INT;
				case Il.IL_BYTE:
					return Il.IL_UNSIGNED_BYTE;
				case Il.IL_SHORT:
					return Il.IL_UNSIGNED_SHORT;
				default:
					return val;
			}
		}