Browse Source
fix windows dir opening
Signed-off-by: crueter <crueter@eden-emu.dev>
pull/94/head
crueter
6 months ago
No known key found for this signature in database
GPG Key ID: 425ACD2D4830EBC6
1 changed files with
1 additions and
1 deletions
-
src/qt_common/qt_game_util.cpp
|
|
@ -165,7 +165,7 @@ bool MakeShortcutIcoPath(const u64 program_id, |
|
|
|
|
|
|
|
|
void OpenEdenFolder(const Common::FS::EdenPath& path) |
|
|
void OpenEdenFolder(const Common::FS::EdenPath& path) |
|
|
{ |
|
|
{ |
|
|
QDesktopServices::openUrl(QUrl(QString::fromStdString(Common::FS::GetEdenPathString(path)))); |
|
|
|
|
|
|
|
|
QDesktopServices::openUrl(QUrl::fromLocalFile(QString::fromStdString(Common::FS::GetEdenPathString(path)))); |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
void OpenRootDataFolder() |
|
|
void OpenRootDataFolder() |
|
|
|