Discussion forum for G-Force users
Moderators: BTT , andy55 , b.dwall , juxtiphi
evilded777
Posts: 9 Joined: Fri May 27, 2005 10:49 am
Post
by evilded777 » Mon May 01, 2006 8:38 am
Does the order on the various bits of Flag have any relevance?
Can you apply the different bits in combination, ie Flag="(8192+ 2048) + 1024"
chkman
Posts: 329 Joined: Mon Aug 08, 2005 12:36 pm
Location: Greensburg, PA
Post
by chkman » Mon May 01, 2006 8:52 am
The order doesn't matter just the sum. You can mix those three but I'm not sure what that will do. I'd try each one separately then mix two then the third and see what happens.
evilded777
Posts: 9 Joined: Fri May 27, 2005 10:49 am
Post
by evilded777 » Mon May 01, 2006 9:15 am
Hmmm... it seems to me that the order does matter.
Because:
Flag="2048 + 8192"
does not display the same as
Flag="8192 + 2048"
but Flag="2048 + 8192"
is the same as
Flag=10240
?
chkman
Posts: 329 Joined: Mon Aug 08, 2005 12:36 pm
Location: Greensburg, PA
Post
by chkman » Mon May 01, 2006 12:33 pm
Maybe you found a bug?