mirror of
https://github.com/ZDoom/Raze.git
synced 2025-06-01 17:52:13 +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__
|
#ifdef __unix__
|
||||||
else if (ev->subtype == EV_GUI_MButtonDown)
|
else if (ev->subtype == EV_GUI_MButtonDown)
|
||||||
{
|
{
|
||||||
CT_PasteChat(I_GetFromClipboard(true));
|
CT_PasteChat(I_GetFromClipboard(true).GetChars());
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
|
@ -226,7 +226,7 @@ TArray<FString> I_GetSteamPath()
|
||||||
{
|
{
|
||||||
struct stat st;
|
struct stat st;
|
||||||
FString candidate(SteamInstallFolders[i] + "/" + AppInfo[app]);
|
FString candidate(SteamInstallFolders[i] + "/" + AppInfo[app]);
|
||||||
if(DirExists(candidate))
|
if(DirExists(candidate.GetChars()))
|
||||||
result.Push(candidate);
|
result.Push(candidate);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue