mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-24 14:17:21 +01:00
'libs/audiographer' - Try 'lrintf' instead of 'rintf' which isn't available in MSVC
This commit is contained in:
parent
e14966e778
commit
6daeba047e
1 changed files with 1 additions and 1 deletions
|
|
@ -292,7 +292,7 @@ inline static void gdither_innner_loop_fp(const GDitherType dt,
|
|||
break;
|
||||
}
|
||||
|
||||
clamped = rintf(tmp);
|
||||
clamped = (double)lrintf(tmp);
|
||||
if (clamped > clamp_u) {
|
||||
clamped = clamp_u;
|
||||
} else if (clamped < clamp_l) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue