mirror of
https://github.com/ZDoom/Raze.git
synced 2024-11-22 12:11:17 +00:00
- Apply last remaining .GetChars()
fixes for POSIX targets.
This commit is contained in:
parent
41a52f0973
commit
13b792e953
2 changed files with 2 additions and 2 deletions
|
@ -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
|
||||
}
|
||||
|
|
|
@ -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);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue