diff --git a/src/gfx/pal_spec.cpp b/src/gfx/pal_spec.cpp index 480b8061..65f8fef9 100644 --- a/src/gfx/pal_spec.cpp +++ b/src/gfx/pal_spec.cpp @@ -413,7 +413,6 @@ static void parseACTFile(std::filebuf &file) { uint16_t nbColors = 256; if (len == 772) { nbColors = readBE(&buf[768]); - // TODO: apparently there is a "transparent color index"? What? if (nbColors > 256 || nbColors == 0) { error("Invalid number of colors in ACT file (%" PRIu16 ")", nbColors); return; @@ -524,9 +523,6 @@ static void parseACOFile(std::filebuf &file) { return; } } - - // TODO: maybe scan the v2 data instead (if present) - // `codecvt` can be used to convert from UTF-16 to UTF-8 } static void parseGBCFile(std::filebuf &file) {