Skip to content

Commit

Permalink
Fix for GettingStartedCapture example to use printArray
Browse files Browse the repository at this point in the history
  • Loading branch information
REAS committed Sep 22, 2015
1 parent 191e511 commit 7d69051
Showing 1 changed file with 2 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,7 @@ void setup() {
exit();
} else {
println("Available cameras:");
for (int i = 0; i < cameras.length; i++) {
println(cameras[i]);
}
printArray(cameras);

// The camera can be initialized directly using an element
// from the array returned by list():
Expand All @@ -45,5 +43,4 @@ void draw() {
// is faster when just drawing the image without any additional
// resizing, transformations, or tint.
//set(0, 0, cam);
}

}

0 comments on commit 7d69051

Please sign in to comment.