Remove Const due to FileRead (#223)

This commit is contained in:
Michael Miller
2018-08-16 17:17:03 -07:00
committed by GitHub
parent c5b8343af0
commit 300dd423c5

View File

@@ -171,7 +171,7 @@ public:
return _height; 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) if (x < 0 || x >= _width || y < 0 || y >= _height)
{ {