mirror of
https://github.com/mordentral/AdvancedSessionsPlugin.git
synced 2025-10-22 16:04:18 +00:00
Merge branch '5.1-Preview'
This commit is contained in:
@@ -1,8 +1,8 @@
|
||||
{
|
||||
"FileVersion": 3,
|
||||
"FriendlyName": "Advanced Sessions",
|
||||
"Version": 4,
|
||||
"VersionName": "5.0",
|
||||
"Version": 5.1,
|
||||
"VersionName": "5.1",
|
||||
"Description": "Adds new blueprint functions to handle more advanced session operations.",
|
||||
"Category": "Advanced Sessions Plugin",
|
||||
"CreatedBy": "Joshua Statzer",
|
||||
|
@@ -2,8 +2,8 @@
|
||||
"FileVersion" : 3,
|
||||
|
||||
"FriendlyName" : "Advanced Steam Sessions",
|
||||
"Version" : 5.0,
|
||||
"VersionName": "5.0",
|
||||
"Version" : 5.1,
|
||||
"VersionName": "5.1",
|
||||
"Description" : "Adds new blueprint functions to handle more advanced session operations in Steam. REQUIRES ADVANCED SESSIONS",
|
||||
"Category" : "Advanced Sessions Plugin",
|
||||
"CreatedBy" : "Joshua Statzer",
|
||||
|
@@ -194,11 +194,10 @@ public:
|
||||
}
|
||||
}
|
||||
|
||||
/** Needed for TMap::GetTypeHash() */
|
||||
friend uint32 GetTypeHash(const FUniqueNetIdSteam2& A)
|
||||
|
||||
virtual uint32 GetTypeHash() const override
|
||||
{
|
||||
return GetTypeHash(A.UniqueNetId);
|
||||
//return (uint32)(A.UniqueNetId) + ((uint32)((A.UniqueNetId) >> 32) * 23);
|
||||
return ::GetTypeHash(UniqueNetId);
|
||||
}
|
||||
|
||||
/** Convenience cast to CSteamID */
|
||||
@@ -273,7 +272,8 @@ enum class ESteamUserOverlayType : uint8
|
||||
|
||||
static FString EnumToString(const FString& enumName, uint8 value)
|
||||
{
|
||||
const UEnum* EnumPtr = FindObject<UEnum>(ANY_PACKAGE, *enumName, true);
|
||||
|
||||
const UEnum* EnumPtr = FindFirstObject<UEnum>(*enumName, EFindFirstObjectOptions::None, ELogVerbosity::Warning, TEXT("EumtoString"));
|
||||
|
||||
if (!EnumPtr)
|
||||
return FString();
|
||||
|
Reference in New Issue
Block a user