Bugfix - remove breaks
authorTomas Wenström <tomas.wenstrom@gmail.com>
Sun, 11 Aug 2019 10:57:08 +0000 (12:57 +0200)
committerTomas Wenström <tomas.wenstrom@gmail.com>
Sun, 11 Aug 2019 10:57:08 +0000 (12:57 +0200)
src/kaka/cakelight/Console.java

index 0d45b7f..cd48f49 100644 (file)
@@ -51,12 +51,10 @@ public class Console extends Thread {
                    String[] split = input.split("\\s+");
                    config.gamma = Double.parseDouble(split[1]);
                    System.out.println("setting gamma to " + config.gamma);
-                   break;
                } else if (input.matches("s|saturation\\s+[0-9.]+")) {
                    String[] split = input.split("\\s+");
                    config.video.saturation = Double.parseDouble(split[1]);
                    System.out.println("setting saturation to " + config.video.saturation);
-                   break;
                }
             } catch (IOException e) {
                 System.out.println("Error reading from command line");