diff options
author | Rachel Powers <508861+Ryex@users.noreply.github.com> | 2023-02-09 02:02:40 -0700 |
---|---|---|
committer | Rachel Powers <508861+Ryex@users.noreply.github.com> | 2023-03-20 14:56:32 -0700 |
commit | 397e7f036339b09569317300423261f2b37d6119 (patch) | |
tree | f4854cbe7d4737704f3f3580fd0e81bcd772047d /launcher/FileSystem.h | |
parent | c5bbe42b57075a4b428d0be1c1ca9f51701a1a7c (diff) | |
download | PrismLauncher-397e7f036339b09569317300423261f2b37d6119.tar.gz PrismLauncher-397e7f036339b09569317300423261f2b37d6119.tar.bz2 PrismLauncher-397e7f036339b09569317300423261f2b37d6119.zip |
feat(reflink): hook up relink / clone on the copy dialog
Signed-off-by: Rachel Powers <508861+Ryex@users.noreply.github.com>
Diffstat (limited to 'launcher/FileSystem.h')
-rw-r--r-- | launcher/FileSystem.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/launcher/FileSystem.h b/launcher/FileSystem.h index 531036dd..aa28de93 100644 --- a/launcher/FileSystem.h +++ b/launcher/FileSystem.h @@ -329,6 +329,7 @@ enum class FilesystemType { HFS, HFSPLUS, HFSX, + FUSEBLK, UNKNOWN }; @@ -346,6 +347,7 @@ static const QMap<FilesystemType, QString> s_filesystem_type_names = { {FilesystemType::HFS, QString("HFS")}, {FilesystemType::HFSPLUS, QString("HFSPLUS")}, {FilesystemType::HFSX, QString("HFSX")}, + {FilesystemType::FUSEBLK, QString("FUSEBLK")}, {FilesystemType::UNKNOWN, QString("UNKNOWN")} }; @@ -365,6 +367,7 @@ static const QMap<QString, FilesystemType> s_filesystem_type_names_inverse = { {QString("HFSPLUS"), FilesystemType::HFSPLUS}, {QString("HFSX"), FilesystemType::HFSX}, {QString("HFS"), FilesystemType::HFS}, + {QString("FUSEBLK"), FilesystemType::FUSEBLK}, {QString("UNKNOWN"), FilesystemType::UNKNOWN} }; |