diff options
Diffstat (limited to 'src/components/rle/RleDecoder.h')
| -rw-r--r-- | src/components/rle/RleDecoder.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/components/rle/RleDecoder.h b/src/components/rle/RleDecoder.h index c21f45c..0f607fb 100644 --- a/src/components/rle/RleDecoder.h +++ b/src/components/rle/RleDecoder.h @@ -11,13 +11,13 @@ namespace Pinetime { * Code from https://github.com/daniel-thompson/wasp-bootloader by Daniel Thompson released under the MIT license. */ class RleDecoder { - public: + public: RleDecoder(const uint8_t* buffer, size_t size); RleDecoder(const uint8_t* buffer, size_t size, uint16_t foregroundColor, uint16_t backgroundColor); void DecodeNext(uint8_t* output, size_t maxBytes); - private: + private: const uint8_t* buffer; size_t size; |
