From 300dd423c5aa1ee467c84c440907f2f7d7dcdcf5 Mon Sep 17 00:00:00 2001 From: Michael Miller Date: Thu, 16 Aug 2018 17:17:03 -0700 Subject: [PATCH] Remove Const due to FileRead (#223) --- src/internal/NeoBitmapFile.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/internal/NeoBitmapFile.h b/src/internal/NeoBitmapFile.h index 96a1624..cef8c3c 100644 --- a/src/internal/NeoBitmapFile.h +++ b/src/internal/NeoBitmapFile.h @@ -171,7 +171,7 @@ public: return _height; }; - typename T_COLOR_FEATURE::ColorObject GetPixelColor(int16_t x, int16_t y) const + typename T_COLOR_FEATURE::ColorObject GetPixelColor(int16_t x, int16_t y) { if (x < 0 || x >= _width || y < 0 || y >= _height) {