Signed-off-by: crueter <crueter@eden-emu.dev>
@ -6,7 +6,7 @@
#include <filesystem>
namespace Common::FS {
bool CreateSymlink(std::filesystem::__cxx11::path from, std::filesystem::__cxx11::path to);
bool CreateSymlink(std::filesystem::path from, std::filesystem::path to);
bool IsSymlink(const std::filesystem::path &path);
} // namespace Common::FS
@ -516,6 +516,7 @@ void QtConfig::SaveUIGamelistValues() {
while (iter.hasNext()) {
iter.next();
SetArrayIndex(i);
WriteIntegerSetting("program_id", iter.key());
WriteStringSetting("ryujinx_path", iter.value().absolutePath().toStdString());
@ -2914,6 +2914,8 @@ void MainWindow::OnLinkToRyujinx(const u64& program_id)
} else {
UISettings::values.ryujinx_link_paths.remove(program_id);
}
config->SaveAllValues();
void MainWindow::OnMenuLoadFile() {