Update of /cvsroot/simspark/simspark/spark/oxygen/gamecontrolserver
In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv10347/oxygen/gamecontrolserver
Modified Files:
Tag: WIN32
gamecontrolserver.cpp predicate.cpp
Log Message:
Index: gamecontrolserver.cpp
===================================================================
RCS file: /cvsroot/simspark/simspark/spark/oxygen/gamecontrolserver/gamecontrolserver.cpp,v
retrieving revision 1.1
retrieving revision 1.1.2.1
diff -C2 -d -r1.1 -r1.1.2.1
*** gamecontrolserver.cpp 5 Dec 2005 21:16:49 -0000 1.1
--- gamecontrolserver.cpp 9 Feb 2007 20:11:56 -0000 1.1.2.1
***************
*** 206,210 ****
// the real thing should query the AgentAspect corresponding to
// the agent.
! return 0.2;
}
--- 206,210 ----
// the real thing should query the AgentAspect corresponding to
// the agent.
! return 0.2f;
}
***************
*** 214,218 ****
// the real thing should query the AgentAspect corresponding to
// the agent
! return 0.1;
}
--- 214,218 ----
// the real thing should query the AgentAspect corresponding to
// the agent
! return 0.1f;
}
***************
*** 222,226 ****
// the real thing should query the AgentAspect corresponding to
// the agent.
! return 0.1;
}
--- 222,226 ----
// the real thing should query the AgentAspect corresponding to
// the agent.
! return 0.1f;
}
Index: predicate.cpp
===================================================================
RCS file: /cvsroot/simspark/simspark/spark/oxygen/gamecontrolserver/predicate.cpp,v
retrieving revision 1.1
retrieving revision 1.1.2.1
diff -C2 -d -r1.1 -r1.1.2.1
*** predicate.cpp 5 Dec 2005 21:16:49 -0000 1.1
--- predicate.cpp 9 Feb 2007 20:11:56 -0000 1.1.2.1
***************
*** 208,212 ****
int PredicateList::GetSize() const
{
! return mList.size();
}
--- 208,212 ----
int PredicateList::GetSize() const
{
! return static_cast<int>(mList.size());
}
|