Fixed an issue with the Qualcomm TextureConverter.dll missing on startup

Fixes UE-18730

#lockdown Nick.Penwarden

[CL 2623138 by Terence Burns in Main branch]
This commit is contained in:
Terence Burns
2015-07-16 09:55:37 -04:00
committed by Terence.Burns@epicgames.com
parent decf43c1c3
commit 233a69a14d
2 changed files with 10 additions and 2 deletions

View File

@@ -254,6 +254,14 @@ static ITextureFormat* Singleton = NULL;
class FTextureFormatAndroidModule : public ITextureFormatModule
{
public:
FTextureFormatAndroidModule()
{
#if PLATFORM_WINDOWS
TextureConverterHandle = LoadLibraryW(*(QualCommBinariesRoot + "TextureConverter.dll"));
#endif
}
virtual ~FTextureFormatAndroidModule()
{
delete Singleton;