Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions fakenect/fakenect.c
Original file line number Diff line number Diff line change
Expand Up @@ -203,6 +203,11 @@ int freenect_process_events(freenect_context *ctx)
return 0;
}

int freenect_process_events_timeout(freenect_context *ctx, struct timeval *timeout)
{
return freenect_process_events(ctx);
}

double freenect_get_tilt_degs(freenect_raw_tilt_state *state)
{
// NOTE: This is duped from tilt.c, this is the only function we need from there
Expand Down