From f9c7fcf64b7d29e49bfe3fe663fb38a11a27cd02 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miloslav=20=C4=8C=C3=AD=C5=BE?= Date: Tue, 2 Oct 2018 17:57:19 +0200 Subject: [PATCH] Remove TODO --- general.hpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/general.hpp b/general.hpp index 756026f..ec4bbc5 100644 --- a/general.hpp +++ b/general.hpp @@ -281,8 +281,6 @@ void inline drawSpriteSquare(const unsigned char *sprite, int16_t x, int16_t y, /// Faster than drawSprite. void drawImage(const unsigned char *image, int16_t x, int16_t y) { - // TODO: optimize - for (int16_t i = 0; i < image[0]; ++i) { int16_t xPos = x + i;