Skip to content

Commit

Permalink
Reword hack from unusual to non-Latin
Browse files Browse the repository at this point in the history
  • Loading branch information
rankynbass committed Dec 19, 2023
1 parent f853a2b commit 2da13a3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/XIVLauncher.Core/Components/MainPage/MainPage.cs
Original file line number Diff line number Diff line change
Expand Up @@ -685,7 +685,7 @@ public async Task<Process> StartGameAndAddon(Launcher.LoginResult loginResult, b

IGameRunner runner;

// Dalamud Fix: Force C.utf8 to fix incorrect paths
// Hack: Force C.utf8 to fix incorrect unicode paths
if (App.Settings.FixLocale.Value && !System.OperatingSystem.IsWindows())
{
System.Environment.SetEnvironmentVariable("LC_ALL", "C.utf8");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ public class SettingsTabTroubleshooting : SettingsTab
{
new SettingsEntry<bool>("Hack: Disable gameoverlayrenderer.so", "Fixes some stuttering issues after 40+ minutes, but may affect steam overlay and input.", () => Program.Config.FixLDP ?? false, x => Program.Config.FixLDP = x),
new SettingsEntry<bool>("Hack: XMODIFIERS=\"@im=null\"", "Fixes some mouse-related issues, some stuttering issues", () => Program.Config.FixIM ?? false, x => Program.Config.FixIM = x),
new SettingsEntry<bool>("Hack: Force locale to C.utf8", "Sets LC_ALL and LC_CTYPE to C.utf8. This can fix some issues with unusual unicode characters in file paths.", () => Program.Config.FixLocale ?? false, b => Program.Config.FixLocale = b),
new SettingsEntry<bool>("Hack: Force locale to C.utf8", "Sets LC_ALL and LC_CTYPE to C.utf8. This can fix some issues with non-Latin unicode characters in file paths.", () => Program.Config.FixLocale ?? false, b => Program.Config.FixLocale = b),
};
public override string Title => "Troubleshooting";

Expand Down

0 comments on commit 2da13a3

Please sign in to comment.