Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion RetroBar/PropertiesWindow.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -356,7 +356,8 @@ private void CbAutoStart_OnChecked(object sender, RoutedEventArgs e)
}
else
{
rKey?.SetValue("RetroBar", ExePath.GetExecutablePath());
// Registry Run values are command lines; quote the executable path to handle spaces in usernames/paths.
rKey?.SetValue("RetroBar", $"\"{ExePath.GetExecutablePath()}\"");
}
}
catch (Exception exception)
Expand Down