if(strlen(string) != 5)
return FALSE;
- else if(*string == '5' && ('0' <= *(string+1) <= '8') &&
+ else if(*string == '5' && ('0' <= *(string+1) && *(string+1) <= '8') &&
(nisdigit(string+2,3) || strncmp(string+2,"///",3)
== 0) )
{
bool std2ccap(Devaddr *, Diskaddr *, char *);
-char *strupr(char *);
-char *strlwr(char *);
+//char *strupr(char *);
+//char *strlwr(char *);
//char *strdup(char *);
//int strcmpi(char *, char *);
: SGAnimation(props, new ssgTexTrans),
_prop((SGPropertyNode *)prop_root->getNode(props->getStringValue("property", "/null"), true))
{
- int i;
+ unsigned int i;
// Load animations
vector<SGPropertyNode_ptr> transform_nodes = props->getChildren("transform");
_transform = new TexTransform [transform_nodes.size()];