diff options
author | Isaac Marovitz <42140194+IsaacMarovitz@users.noreply.github.com> | 2024-01-29 22:14:19 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-01-29 23:14:19 +0100 |
commit | bb4a28b5254a964a99af14d6a8bd473ccbbf5778 (patch) | |
tree | 9e418a9183046ec05d871d0fcce67009478ce169 /src/Ryujinx.Ava/UI/Models/ModModel.cs | |
parent | a8fbcdae9f505577685a4afed464a58b568e8cd9 (diff) |
Ava UI: Mod Manager Fixes (Again) (#6187)1.1.1148
* Fix typo + Fix deleting from old dir
* Avoid double enumeration
* Break when parentDir is found
* Fix deleting non subdirectory mods
* Typo
Diffstat (limited to 'src/Ryujinx.Ava/UI/Models/ModModel.cs')
-rw-r--r-- | src/Ryujinx.Ava/UI/Models/ModModel.cs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/Ryujinx.Ava/UI/Models/ModModel.cs b/src/Ryujinx.Ava/UI/Models/ModModel.cs index f68e1593..ee28ca5f 100644 --- a/src/Ryujinx.Ava/UI/Models/ModModel.cs +++ b/src/Ryujinx.Ava/UI/Models/ModModel.cs @@ -17,14 +17,16 @@ namespace Ryujinx.Ava.UI.Models } } + public bool InSd { get; } public string Path { get; } public string Name { get; } - public ModModel(string path, string name, bool enabled) + public ModModel(string path, string name, bool enabled, bool inSd) { Path = path; Name = name; Enabled = enabled; + InSd = inSd; } } } |