Game Development Community

Merging RTSKit with TGE 1.4

by Robert Stewart · in RTS Starter Kit · 09/18/2005 (1:36 pm) · 3 replies

Ok so far so good, I have only one problem and that has to do with GuiRTSTSCtrl.
Here is the error
'bit': identifier not found, even with argument-dependent lookup
referring to
enum PanEdge {
      EdgeNone   = bit(0),
Acually I had lots of problems, but they were easily fixed, I'm not sure what to do to fix this problem. Help Appreciated.

#1
09/18/2005 (2:16 pm)
Hi.

Try changing it in uppercase.

enum PanEdge {      
           EdgeNone   = BIT(0),


Bye,
Jacopo
#2
09/18/2005 (2:26 pm)
Haha, thanks for the help, just before deciding to close this thread(and finding your post), I had already figured that out. Thanks though
#3
09/18/2005 (2:29 pm)
:)
You are welcome!