Skip to content

Commit 14fa895

Browse files
author
Chris Conway
committed
Fixed issues with compiling for HTML5.
1 parent 0539418 commit 14fa895

File tree

4 files changed

+270
-309
lines changed

4 files changed

+270
-309
lines changed

Source/RuntimeMeshComponent/Private/RuntimeMeshCore.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ void FRuntimeMeshVertexTypeRegistrationContainer::Register(const FRuntimeMeshVer
2121
// * Accidentally copy-and-pasted an FRuntimeMeshVertexTypeRegistration object.
2222
ensureMsgf(ExistingRegistration->TypeInfo->TypeName == InType->TypeName,
2323
TEXT("Runtime mesh vertex registrations cannot change between hotreloads - \"%s\" is being reregistered as \"%s\""),
24-
ExistingRegistration->TypeInfo->TypeName, InType->TypeName);
24+
*ExistingRegistration->TypeInfo->TypeName, *InType->TypeName);
2525

2626
ExistingRegistration->ReferenceCount++;
2727
}

0 commit comments

Comments
 (0)