mirror of
https://github.com/aseprite/aseprite.git
synced 2025-01-28 18:32:50 +00:00
Use size_t instead of unsigned int
This commit is contained in:
parent
3f984a471c
commit
48838c743a
@ -145,7 +145,7 @@ bool MovingCelState::onMouseMove(Editor* editor, MouseMessage* msg)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
for (unsigned int i = 0; i < m_celList.size(); i++) {
|
for (size_t i=0; i<m_celList.size(); ++i) {
|
||||||
Cel* cel = m_celList[i];
|
Cel* cel = m_celList[i];
|
||||||
gfx::Point* celStart = &m_celStarts[i];
|
gfx::Point* celStart = &m_celStarts[i];
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user