You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
Fix struct not initialized warning
#jira UE-201223 [CL 29940289 by dominik peacock in ue5-main branch]
This commit is contained in:
+2
-1
@@ -8,6 +8,7 @@
|
||||
|
||||
// IMPORTANT: This peer-to-peer workflow is subject to be replaced, possibly in 5.5, by a server feature.
|
||||
// The peer-to-peer approach cannot guarantee atomicity if client A is trying to edit clients B and C as one operation: How to revert when B succeeds and C fails? You can't.
|
||||
// TODO UE-201136.
|
||||
|
||||
/** A kind request from one client to another client to change their server registered state. The receiver can reject the request. */
|
||||
USTRUCT()
|
||||
@@ -107,5 +108,5 @@ struct FMultiUser_ChangeRemote_Cancelled
|
||||
GENERATED_BODY()
|
||||
|
||||
UPROPERTY()
|
||||
EMultiUserCancelRemoteChangeReason Reason;
|
||||
EMultiUserCancelRemoteChangeReason Reason = EMultiUserCancelRemoteChangeReason::FailedToCreate;
|
||||
};
|
||||
Reference in New Issue
Block a user