Skip to content

Commit

Permalink
4.26 - preliminary fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
getnamo committed Oct 4, 2020
1 parent d29df10 commit f7ccd3c
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions SocketIOClient.uplugin
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"FileVersion": 3,
"Version": 1,
"VersionName": "1.4.2",
"EngineVersion" : "4.25.0",
"VersionName": "1.4.3",
"EngineVersion" : "4.26.0",
"FriendlyName": "Socket.IO Client",
"Description": "Real-time networking library Socket.IO Client usable from blueprints and c++.",
"Category": "Networking",
Expand Down
4 changes: 2 additions & 2 deletions Source/CoreUtility/Private/CUBlueprintLibrary.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ UTexture2D* UCUBlueprintLibrary::Conv_BytesToTexture(const TArray<uint8>& InByte
[UpdateData](FRHICommandList& CommandList)
{
RHIUpdateTexture2D(
((FTexture2DResource*)UpdateData->Texture2D->Resource)->GetTexture2DRHI(),
((FTextureResource*)UpdateData->Texture2D->Resource)->GetTexture2DRHI(),
0,
UpdateData->Region,
UpdateData->Pitch,
Expand Down Expand Up @@ -369,7 +369,7 @@ TFuture<UTexture2D*> UCUBlueprintLibrary::Conv_BytesToTexture_Async(const TArray
[UpdateData](FRHICommandList& CommandList)
{
RHIUpdateTexture2D(
((FTexture2DResource*)UpdateData->Texture2D->Resource)->GetTexture2DRHI(),
((FTextureResource*)UpdateData->Texture2D->Resource)->GetTexture2DRHI(),
0,
UpdateData->Region,
UpdateData->Pitch,
Expand Down
2 changes: 1 addition & 1 deletion Source/SIOJson/Public/SIOJRequestJSON.h
Original file line number Diff line number Diff line change
Expand Up @@ -311,6 +311,6 @@ class SIOJSON_API USIOJRequestJSON : public UObject
FString CustomVerb;

/** Request we're currently processing */
TSharedRef<IHttpRequest> HttpRequest = FHttpModule::Get().CreateRequest();
TSharedRef<IHttpRequest, ESPMode::ThreadSafe> HttpRequest = FHttpModule::Get().CreateRequest();

};

0 comments on commit f7ccd3c

Please sign in to comment.