diff options
Diffstat (limited to 'src/wiring')
-rw-r--r-- | src/wiring/Print.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wiring/Print.cpp b/src/wiring/Print.cpp index c7e0cc6..efe3eef 100644 --- a/src/wiring/Print.cpp +++ b/src/wiring/Print.cpp @@ -98,7 +98,7 @@ void Print::print(double n) void Print::println(void) { -// print('\r'); + print('\r'); print('\n'); } |