mirror of
https://github.com/aseprite/aseprite.git
synced 2025-03-25 23:37:05 +00:00
Fix warning
This commit is contained in:
parent
69a303b126
commit
97d54f04c0
@ -87,7 +87,7 @@ bool AsepriteDecoder::decode()
|
||||
sprite->setFrameDuration(frame, frame_header.duration);
|
||||
|
||||
// Read chunks
|
||||
for (int c=0; c<frame_header.chunks; c++) {
|
||||
for (uint32_t c=0; c<frame_header.chunks; c++) {
|
||||
// Start chunk position
|
||||
size_t chunk_pos = f()->tell();
|
||||
delegate()->progress((float)chunk_pos / (float)header.size);
|
||||
|
Loading…
x
Reference in New Issue
Block a user