core: fix i586 build (#13550)
Signed-off-by: Florian "sp1rit" <sp1rit@disroot.org>
This commit is contained in:
parent
c11cadd8d6
commit
8271cfc97b
1 changed files with 1 additions and 1 deletions
|
|
@ -61,7 +61,7 @@ void CScrollTapeController::insertStrip(ssize_t afterIndex, float size) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
afterIndex = std::clamp(afterIndex, -1L, sc<ssize_t>(INT32_MAX));
|
afterIndex = std::clamp(afterIndex, sc<ssize_t>(-1L), sc<ssize_t>(INT32_MAX));
|
||||||
|
|
||||||
SStripData newStrip;
|
SStripData newStrip;
|
||||||
newStrip.size = size;
|
newStrip.size = size;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue