Skip to content

Commit de39a67

Browse files
committed
Fix error (debug build): narrowing conversion of ‘(CBlend::ECurvature)4294967295’ from ‘unsigned int’ to ‘int’ inside { }
1 parent cba90d9 commit de39a67

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Include/xrRender/animation_blend.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ class CBlend
1616
// eFixed,
1717
eAccrue,
1818
eFalloff,
19-
eFORCEDWORD = u32(-1)
19+
eFORCEDWORD = int(-1)
2020
};
2121

2222
public:

0 commit comments

Comments
 (0)