diff --git a/HttpGPT.uplugin b/HttpGPT.uplugin index 0161f35..a29c3dd 100644 --- a/HttpGPT.uplugin +++ b/HttpGPT.uplugin @@ -3,7 +3,7 @@ "Version": 13, "VersionName": "1.5.0", "FriendlyName": "HttpGPT - GPT Integration", - "Description": "HttpGPT is an Unreal Engine plugin that facilitates integration with OpenAI's GPT based services (ChatGPT and DALL-E) through asynchronous REST requests, making it easy for developers to communicate with the chatbot. HttpGPT also includes Editor Tools to integrate Chat GPT and DALL-E image generation directly in the Engine.", + "Description": "HttpGPT is an Unreal Engine plugin that facilitates integration with OpenAI's GPT based services (ChatGPT and DALL-E) through asynchronous REST requests, making it easy for developers to communicate with these services. HttpGPT also includes new Editor Tools to integrate Chat GPT and DALL-E image generation directly in the Engine.", "Category": "Game Features", "CreatedBy": "Lucas Vilas-Boas", "CreatedByURL": "https://github.com/lucoiso", diff --git a/Source/HttpGPTEditorModule/Private/SHttpGPTImageGenView.cpp b/Source/HttpGPTEditorModule/Private/SHttpGPTImageGenView.cpp index d6a042a..f5fe656 100644 --- a/Source/HttpGPTEditorModule/Private/SHttpGPTImageGenView.cpp +++ b/Source/HttpGPTEditorModule/Private/SHttpGPTImageGenView.cpp @@ -119,7 +119,7 @@ void SHttpGPTImageGenItemData::Construct(const FArguments& InArgs) FReply SHttpGPTImageGenItemData::HandleSaveButton() { const FString AssetName = FString::FromInt(Texture->GetUniqueID()); - FString TargetFilename = FPaths::Combine("/Game/", UHttpGPTSettings::Get()->GeneratedImagesDir, AssetName); + FString TargetFilename = FPaths::Combine(TEXT("/Game/"), UHttpGPTSettings::Get()->GeneratedImagesDir, AssetName); FPaths::NormalizeFilename(TargetFilename); UPackage* const Package = CreatePackage(*TargetFilename);