| Index: dm/DM.cpp
|
| diff --git a/dm/DM.cpp b/dm/DM.cpp
|
| index 870b371cc44d089cc53696d81a2c51e2fabdb1ef..84b49dc170d39e67e7c0fd912d8f8779a40adc42 100644
|
| --- a/dm/DM.cpp
|
| +++ b/dm/DM.cpp
|
| @@ -155,7 +155,8 @@ static bool codec_supported(const char* ext) {
|
| // list (and eventually we can remove this check once they are all supported).
|
| return strcmp(ext, "png") == 0 || strcmp(ext, "PNG") == 0 ||
|
| strcmp(ext, "bmp") == 0 || strcmp(ext, "BMP") == 0 ||
|
| - strcmp(ext, "ico") == 0 || strcmp(ext, "ICO") == 0;
|
| + strcmp(ext, "ico") == 0 || strcmp(ext, "ICO") == 0 ||
|
| + strcmp(ext, "wbmp") == 0 || strcmp(ext, "WBMP") == 0;
|
| }
|
|
|
| static void gather_srcs() {
|
|
|