Normand Briere
2019-04-22 91106535bc5aa5e67cbb02a67cf6de1519cba0e4
ScriptNode.java
....@@ -538,13 +538,13 @@
538538 }
539539 if (command.equals("stoplive") || command.equals("liveoff"))
540540 {
541
- if (CameraPane.isLIVE())
541
+ if (Globals.isLIVE())
542542 CameraPane.theRenderer.ToggleLive();
543543 return;
544544 }
545545 if (command.equals("startlive") || command.equals("liveon"))
546546 {
547
- if (!CameraPane.isLIVE())
547
+ if (!Globals.isLIVE())
548548 CameraPane.theRenderer.ToggleLive();
549549 return;
550550 }
....@@ -1793,7 +1793,7 @@
17931793 return;
17941794 }
17951795
1796
- if (isLive() && display.isLIVE() && display.drawMode == display.SHADOW)
1796
+ if (isLive() && Globals.isLIVE() && Globals.drawMode == display.SHADOW)
17971797 {
17981798 if (reader == null)
17991799 Init();