Skip to content

Commit

Permalink
fix "play" without arguments
Browse files Browse the repository at this point in the history
  • Loading branch information
hubbe committed Nov 18, 2018
1 parent 1a93b10 commit 1613fdf
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion lightsaber.ino
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@
// You can have multiple configuration files, and specify which one
// to use here.

// #define CONFIG_FILE "config/default_v3_config.h"
#define CONFIG_FILE "config/default_proffieboard_config.h"
// #define CONFIG_FILE "config/default_v3_config.h"
// #define CONFIG_FILE "config/crossguard_config.h"
// #define CONFIG_FILE "config/graflex_v1_config.h"
// #define CONFIG_FILE "config/prop_shield_fastled_v1_config.h"
Expand Down Expand Up @@ -2568,6 +2568,8 @@ public:
if (*e) {
*e = 0;
e++; // e is now argument (if any)
} else {
e = nullptr;
}
if (monitor.IsMonitoring(Monitoring::MonitorSerial) &&
default_output != &SA::stream()) {
Expand Down

0 comments on commit 1613fdf

Please sign in to comment.