Skip to content

Commit 938288a

Browse files
committed
fix default height
Signed-off-by: Umair Khan <[email protected]>
1 parent 6399f9c commit 938288a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/in/omerjerk/processing/video/android/Capture.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ public Capture(final PApplet parent, int width, int height) {
3636
super(parent);
3737
if (width == -1 || height == -1) {
3838
width = 720;
39-
height = 720;
39+
height = 1280;
4040
}
4141
init(width, height, ARGB);
4242
initalizeFrameBuffer();

0 commit comments

Comments
 (0)