Skip to content

Commit 9c4320d

Browse files
committed
pass arguments to the super class correctly
Signed-off-by: Umair Khan <[email protected]>
1 parent 2dc6f26 commit 9c4320d

File tree

1 file changed

+1
-1
lines changed
  • src/in/omerjerk/processing/video/android

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ public Movie(PApplet parent) {
1818
}
1919

2020
public Movie(PApplet parent, int width, int height) {
21-
super(parent);
21+
super(parent, width, height);
2222
new Thread(new Runnable() {
2323
@Override
2424
public void run() {

0 commit comments

Comments
 (0)