Skip to content

Commit b8d73dc

Browse files
committed
fixed 4.19 build
1 parent f1e9050 commit b8d73dc

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Source/UnrealEnginePython/Private/Wrappers/UEPyFFoliageInstance.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ static PyObject *py_ue_ffoliage_instance_get_instance_id(ue_PyFFoliageInstance *
141141
return PyLong_FromLong(self->instance_id);
142142
}
143143

144-
#if ENGINE_MINOR_VERSION > 18
144+
#if ENGINE_MINOR_VERSION > 19
145145
static PyObject *py_ue_ffoliage_instance_get_base_component(ue_PyFFoliageInstance *self, void *closure)
146146
{
147147
get_instance(self);
@@ -162,7 +162,7 @@ static PyGetSetDef ue_PyFFoliageInstance_getseters[] = {
162162
{ (char *)"guid", (getter)py_ue_ffoliage_instance_get_procedural_guid, nullptr, (char *)"", NULL },
163163
{ (char *)"base_id", (getter)py_ue_ffoliage_instance_get_base_id, nullptr, (char *)"", NULL },
164164
{ (char *)"instance_id", (getter)py_ue_ffoliage_instance_get_instance_id, nullptr, (char *)"", NULL },
165-
#if ENGINE_MINOR_VERSION > 18
165+
#if ENGINE_MINOR_VERSION > 19
166166
{ (char *)"base_component", (getter)py_ue_ffoliage_instance_get_base_component, nullptr, (char *)"", NULL },
167167
#endif
168168
{ NULL } /* Sentinel */

0 commit comments

Comments
 (0)