mirror of
https://github.com/djhackersdev/bemanitools.git
synced 2026-04-25 23:37:54 -05:00
Update cam.c
The user can now set a custom camera device override of "SKIP" to leave that camera unassigned
This commit is contained in:
parent
fc052b2d7f
commit
8fb42aff73
|
|
@ -706,6 +706,11 @@ void fill_cam_struct(struct CameraData *data, const char *devid)
|
||||||
// Device instance path
|
// Device instance path
|
||||||
strcpy(data->deviceInstancePath, devid);
|
strcpy(data->deviceInstancePath, devid);
|
||||||
// continue
|
// continue
|
||||||
|
} else if (check_four(devid, "SKIP")) {
|
||||||
|
// User wants to leave this camera unassigned
|
||||||
|
num_addressed_cams++;
|
||||||
|
num_located_cams++;
|
||||||
|
return;
|
||||||
} else {
|
} else {
|
||||||
// UNKNOWN ENTRY
|
// UNKNOWN ENTRY
|
||||||
log_info("UNK: %s", devid);
|
log_info("UNK: %s", devid);
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user