- Apply last remaining .GetChars() fixes for POSIX targets.

This commit is contained in:
Mitchell Richters 2023-10-09 19:08:31 +11:00 committed by Christoph Oelckers
parent 41a52f0973
commit 13b792e953
2 changed files with 2 additions and 2 deletions

View file

@ -182,7 +182,7 @@ bool CT_Responder (event_t *ev)
#ifdef __unix__
else if (ev->subtype == EV_GUI_MButtonDown)
{
CT_PasteChat(I_GetFromClipboard(true));
CT_PasteChat(I_GetFromClipboard(true).GetChars());
}
#endif
}

View file

@ -226,7 +226,7 @@ TArray<FString> I_GetSteamPath()
{
struct stat st;
FString candidate(SteamInstallFolders[i] + "/" + AppInfo[app]);
if(DirExists(candidate))
if(DirExists(candidate.GetChars()))
result.Push(candidate);
}
}