diff options
Diffstat (limited to 'src/resources/db/palettedb.cpp')
-rw-r--r-- | src/resources/db/palettedb.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/resources/db/palettedb.cpp b/src/resources/db/palettedb.cpp index 4a233d67b..1b7f97029 100644 --- a/src/resources/db/palettedb.cpp +++ b/src/resources/db/palettedb.cpp @@ -23,6 +23,7 @@ #include "configuration.h" #include "logger.h" +#include "utils/checkutils.h" #include "utils/files.h" #include "resources/dye/dyecolor.h" @@ -58,7 +59,7 @@ void PaletteDB::loadPalette() } if (*it != "GIMP Palette") { - logger->log("wrong GIMP palette file"); + reportAlways("wrong GIMP palette file"); return; } ++ it; |