Switch + Constant
Posted: Wed Jul 14, 2010 3:28 pm

Using constants in a switch case doesn't work in standalone builds. For example ..
Code: Select all
switch(0)
{
case 0:
float A = PI;
break;
}
K
The rapid development solution with a tiny footprint
http://www.emix8.org/forum/
Code: Select all
switch(0)
{
case 0:
float A = PI;
break;
}