Not a bug so much as a typo of sorts...
by Cinder Games · in Torque Game Engine · 11/24/2005 (10:59 am) · 1 replies
Simbase.cc
These two console functions show the same usage. I'm only really concerned cause they're functions of mine that got added in with 1.4 :)
ConsoleFunction(getScheduleDuration, S32, 2, 2, "getTimeSinceStart(%scheduleId);")
{
argc; S32 ret = Sim::getScheduleDuration(dAtoi(argv[1]));
return ret;
}
ConsoleFunction(getTimeSinceStart, S32, 2, 2, "getTimeSinceStart(%scheduleId);")
{
argc; S32 ret = Sim::getTimeSinceStart(dAtoi(argv[1]));
return ret;
}These two console functions show the same usage. I'm only really concerned cause they're functions of mine that got added in with 1.4 :)
Associate Kyle Carter