Fix uint compile error
This commit is contained in:
parent
058abfc4cc
commit
88ecc29d1e
1 changed files with 1 additions and 1 deletions
|
@ -63,7 +63,7 @@ Error ImageLoaderJPG::load_image(Image *p_image,FileAccess *f) {
|
|||
for (int y = 0; y < image_height; y++)
|
||||
{
|
||||
const jpgd::uint8* pScan_line;
|
||||
uint scan_line_len;
|
||||
jpgd::uint scan_line_len;
|
||||
if (decoder.decode((const void**)&pScan_line, &scan_line_len) != jpgd::JPGD_SUCCESS)
|
||||
{
|
||||
return ERR_FILE_CORRUPT;
|
||||
|
|
Loading…
Reference in a new issue