(WebPFormat.ReadMetaData): set bpp property.

This commit is contained in:
morkt 2016-12-15 19:34:22 +04:00
parent 4ec723c334
commit 8aec9a4ae2
2 changed files with 2 additions and 2 deletions

View File

@ -68,7 +68,7 @@ namespace GameRes.Formats.Google
return null;
var header = new byte[0x10];
bool found_vp8x = false;
var info = new WebPMetaData();
var info = new WebPMetaData { BPP = 32 };
int chunk_size;
for (;;)
{

View File

@ -73,7 +73,7 @@ namespace GameRes.Formats.Google
return null;
var header = new byte[0x10];
bool found_vp8x = false;
var info = new WebPMetaData();
var info = new WebPMetaData { BPP = 32 };
int chunk_size;
for (;;)
{