animpos -> switch expression not integral???

- Code: Select all
switch (myactor.animpos)
{
case 0:
// do this
break;
case 1:
// do that
break;
}
error: switch expression not integral? huh?
animpos is integer, right ?

Game Editor discussion board
http://game-editor.com/forum/
switch (myactor.animpos)
{
case 0:
// do this
break;
case 1:
// do that
break;
}
switch ((int)myactor.animpos)
{
case 0:
// do this
break;
case 1:
// do that
break;
}