From 10c656448b6a26976232bf925080cf5d655d782d Mon Sep 17 00:00:00 2001 From: Lukas Bachschwell Date: Tue, 19 Dec 2017 13:22:17 +0100 Subject: [PATCH] fixed consts in header --- src/SimpleExpressions.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/SimpleExpressions.h b/src/SimpleExpressions.h index e2f8e74..0e3c1bc 100755 --- a/src/SimpleExpressions.h +++ b/src/SimpleExpressions.h @@ -21,10 +21,10 @@ class SimpleExpressionsClass // Mouths void printMouth(int number, int r, int g, int b); - void writeMouth(char mouthName[], int r, int g, int b); + void writeMouth(const char mouthName[], int r, int g, int b); void printMouth(int number); - void writeMouth(char mouthName[]); + void writeMouth(const char mouthName[]); void clearMouth();