vg_async_task *task = vg_allocate_async_task( &_gs_db.tasks, sizeof(struct task_writeusertime), 1 );
struct task_writeusertime *info = (void *)task->data;
- info->steamid = strtoull( argv[0], NULL, 10 );
strcpy( info->uid, argv[1] );
+ info->steamid = strtoull( argv[0], NULL, 10 );
info->centiseconds = strtoul( argv[2], NULL, 10 );
info->last_second = strtoull( argv[3], NULL, 10 );
+ info->only_if_faster = 1;
vg_async_task_dispatch( task, setlap_task );