- Joined
- Nov 23, 2008
- Messages
- 2,060
- Reaction score
- 264
My server keeps crashing [Mystic Spirit 0.2.5. Client 8.5] and I get an error looking like this:
http://img199.imageshack.us/img199/3200/16963835.png
And I checked out what's online 65: Here it is..
inline SchedulerTask* createSchedulerTask(uint32_t delay, boost::function<void (void)> f)
{
assert(delay != 0);
if(delay < SCHEDULER_MINTICKS)
delay = SCHEDULER_MINTICKS;
return new SchedulerTask(delay, f);
}
The red part is line 65, anyone know what the problem is, or how to fix it?
http://img199.imageshack.us/img199/3200/16963835.png
And I checked out what's online 65: Here it is..
inline SchedulerTask* createSchedulerTask(uint32_t delay, boost::function<void (void)> f)
{
assert(delay != 0);
if(delay < SCHEDULER_MINTICKS)
delay = SCHEDULER_MINTICKS;
return new SchedulerTask(delay, f);
}
The red part is line 65, anyone know what the problem is, or how to fix it?
Last edited: