mirror of
https://github.com/aseprite/aseprite.git
synced 2025-03-01 10:13:22 +00:00
Fix bug in LayerImage::get_cels(). (it was introduced in commit cbc0bf22bde2287cc697737ebf52d349fa1d15f8)
This commit is contained in:
parent
69a50e4d9d
commit
89e15da176
@ -178,8 +178,8 @@ void LayerImage::set_blend_mode(int blend_mode)
|
||||
|
||||
void LayerImage::get_cels(CelList& cels)
|
||||
{
|
||||
CelIterator it = m_cels.begin();
|
||||
CelIterator end = m_cels.begin();
|
||||
CelIterator it = get_cel_begin();
|
||||
CelIterator end = get_cel_end();
|
||||
|
||||
for (; it != end; ++it)
|
||||
cels.push_back(*it);
|
||||
|
Loading…
x
Reference in New Issue
Block a user