We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 56a6f30 commit 875191dCopy full SHA for 875191d
Source/UnrealEnginePython/Private/Wrappers/UEPyFVector.cpp
@@ -363,7 +363,7 @@ void ue_python_init_fvector(PyObject *ue_module)
363
ue_PyFVector_number_methods.nb_add = (binaryfunc)ue_py_fvector_add;
364
ue_PyFVector_number_methods.nb_subtract = (binaryfunc)ue_py_fvector_sub;
365
ue_PyFVector_number_methods.nb_multiply = (binaryfunc)ue_py_fvector_mul;
366
- ue_PyFVector_number_methods.nb_divmod = (binaryfunc)ue_py_fvector_div;
+ ue_PyFVector_number_methods.nb_true_divide = (binaryfunc)ue_py_fvector_div;
367
368
memset(&ue_PyFVector_sequence_methods, 0, sizeof(PySequenceMethods));
369
ue_PyFVectorType.tp_as_sequence = &ue_PyFVector_sequence_methods;
0 commit comments