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 0198052 commit 1df9dfeCopy full SHA for 1df9dfe
Source/UnrealEnginePython/Private/Wrappers/UEPyFStringAssetReference.cpp
@@ -20,7 +20,7 @@ static PyMethodDef ue_PyFStringAssetReference_methods[] = {
20
static PyObject *ue_PyFStringAssetReference_str(ue_PyFStringAssetReference *self)
21
{
22
return PyUnicode_FromFormat("<unreal_engine.FStringAssetReference {'asset_name': %s}>",
23
- self->fstring_asset_reference.GetAssetName());
+ TCHAR_TO_UTF8(*self->fstring_asset_reference.GetAssetName()));
24
}
25
26
static PyTypeObject ue_PyFStringAssetReferenceType = {
0 commit comments