From 59e3d475c52f7baf440cacd75dec94d4a0b970c4 Mon Sep 17 00:00:00 2001
From: 0xPIT <karl@pitrich.com>
Date: Fri, 6 Jan 2017 23:00:13 +0100
Subject: [PATCH] change image data to be unsigned

---
 OLEDDisplayUi.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/OLEDDisplayUi.cpp b/OLEDDisplayUi.cpp
index 3fb4326..163c2e9 100644
--- a/OLEDDisplayUi.cpp
+++ b/OLEDDisplayUi.cpp
@@ -361,7 +361,7 @@ void OLEDDisplayUi::drawIndicator() {
     }
 
     uint16_t frameStartPos = (12 * frameCount / 2);
-    const char *image;
+    const unsigned char *image;
     uint16_t x,y;
     for (byte i = 0; i < this->frameCount; i++) {
 
-- 
GitLab