diff --git a/GameRes/ImageBMP.cs b/GameRes/ImageBMP.cs index e174f592..9c8af046 100644 --- a/GameRes/ImageBMP.cs +++ b/GameRes/ImageBMP.cs @@ -177,6 +177,10 @@ namespace GameRes return ReadBitmapWithAlpha (file, info); } } + else if (0x20 == info.BPP && (info.ImageLength - (width_x_height * 3 + info.ImageOffset)) <= 2) + { + return ReadBitmapBGRA (file, info); + } } return null; }