mirror of
https://github.com/aseprite/aseprite.git
synced 2025-01-06 06:58:15 +00:00
Fix warning in FileOpROI::frames()
This commit is contained in:
parent
8e7a5e5014
commit
d75b836922
@ -79,7 +79,7 @@ namespace app {
|
||||
const doc::SelectedFrames& selectedFrames() const { return m_selFrames; }
|
||||
|
||||
doc::frame_t frames() const {
|
||||
return m_selFrames.size();
|
||||
return (doc::frame_t)m_selFrames.size();
|
||||
}
|
||||
|
||||
private:
|
||||
|
Loading…
Reference in New Issue
Block a user