Skip to content

Commit

Permalink
fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
olir committed Jul 11, 2017
1 parent 9db872e commit 59f1c8a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/main/java/de/screenflow/frankenstein/Main.java
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ public static void main(String[] args) {

Configuration c = Configuration.cliCreateConfiguration(args);

if (c.isVisual()) {
if (args.length==0 || c.isVisual()) {

Class<?> fxMain;
try {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ public Mat configure(Mat sourceFrame) {

if (aspect > 2f)
aspect = aspect / 2f; // not a half sbs
if (aspect < 1.3f) {
if (aspect < 1.24f) {
aspect *= 1.3f;
vcut = 1;
}
Expand Down

0 comments on commit 59f1c8a

Please sign in to comment.