Fixed an another warning on the pi.

This commit is contained in:
Relintai 2022-08-02 00:22:41 +02:00
parent 6cceda5101
commit 0095078e25

View File

@ -49,10 +49,10 @@ class Transform;
class TransformInterpolator {
public:
enum Method : unsigned int {
INTERP_LERP,
INTERP_SLERP,
INTERP_SCALED_SLERP,
enum Method {
INTERP_LERP = 0,
INTERP_SLERP = 1,
INTERP_SCALED_SLERP = 2,
};
private: