Skip to content

Commit

Permalink
bugfix
Browse files Browse the repository at this point in the history
  • Loading branch information
getnamo committed Jan 29, 2024
1 parent bf5927c commit c84ce3f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion SocketIOClient.uplugin
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"FileVersion": 3,
"Version": 1,
"VersionName": "2.7.5",
"VersionName": "2.7.6",
"EngineVersion": "5.3",
"FriendlyName": "Socket.IO Client",
"Description": "Real-time WebSocket networking via Socket.IO protocol usable from blueprints and c++.",
Expand Down
2 changes: 1 addition & 1 deletion Source/CoreUtility/Private/CUBlueprintLibrary.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ TArray<uint8> UCUBlueprintLibrary::Conv_OpusBytesToWav(const TArray<uint8>& InBy
TArray<uint8> UCUBlueprintLibrary::Conv_PCMToWav(const TArray<uint8>& InPCM, int32 SampleRate, int32 Channels)
{
TArray<uint8> WavBytes;
SerializeWaveFile(WavBytes, InPCM.GetData(), InPCM.Num(), Channels, Channels);
SerializeWaveFile(WavBytes, InPCM.GetData(), InPCM.Num(), Channels, SampleRate);
return WavBytes;
}

Expand Down

0 comments on commit c84ce3f

Please sign in to comment.