wip: fix: 15 errors left here

This commit is contained in:
stop screaming 2026-02-20 00:50:15 +02:00
parent bba1f41ed5
commit 82ff49b386
8 changed files with 28 additions and 20 deletions

View file

@ -108,7 +108,7 @@ pub trait ScenesView:
} else {
Self::H_SCENE
};
if y + height <= self.clips_size().h() {
if y + height <= self.clips_size().h() as u16 {
let data = (s, scene, y, y + height);
y += height;
Some(data)