add GetChars() accessors to many FString uses where const char* is wanted.

By no means complete, it's just a start to get rid of that automatic type conversion operator.
This commit is contained in:
Christoph Oelckers 2023-10-03 14:27:13 +02:00
commit 1717ff47b2
28 changed files with 92 additions and 97 deletions

View file

@ -354,7 +354,7 @@ TArray<FString> I_GetSteamPath()
return result;
}
TArray<FString> paths = ParseSteamRegistry(steamPath + "/config/config.vdf");
TArray<FString> paths = ParseSteamRegistry((steamPath + "/config/config.vdf").GetChars());
for(FString &path : paths)
{