Skip to content

Commit 8b2b829

Browse files
committed
Fixed modulo object
1 parent 5e845e9 commit 8b2b829

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

FrameLib_Objects/Binary/FrameLib_Binary_Objects.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ template<> const char *FrameLib_Binary<fmax>::getDescriptionString()
8686
template<> const char *FrameLib_Binary<fdim>::getDescriptionString()
8787
{ return "Calculates the absolute differences between values in the two input frames"; }
8888

89-
template<> const char *FrameLib_Binary<remainder>::getDescriptionString()
89+
template<> const char *FrameLib_Binary<fmod>::getDescriptionString()
9090
{ return "Calculates the left input frame values modulo the right input frame values"; }
9191

9292
typedef FrameLib_Binary<pow> FrameLib_Pow;
@@ -96,6 +96,6 @@ typedef FrameLib_Binary<copysign> FrameLib_CopySign;
9696
typedef FrameLib_Binary<fmin> FrameLib_Min;
9797
typedef FrameLib_Binary<fmax> FrameLib_Max;
9898
typedef FrameLib_Binary<fdim> FrameLib_Diff;
99-
typedef FrameLib_Binary<remainder> FrameLib_Modulo;
99+
typedef FrameLib_Binary<fmod> FrameLib_Modulo;
100100

101101
#endif

0 commit comments

Comments
 (0)