diff options
author | Morph <39850852+Morph1984@users.noreply.github.com> | 2020-04-16 23:27:38 -0400 |
---|---|---|
committer | Morph <39850852+Morph1984@users.noreply.github.com> | 2020-07-10 00:38:28 -0400 |
commit | 4c269e5ced47765f35dbb58afa9fcac8138a1f7c (patch) | |
tree | fdcb76c40ac436c0a01e4501a428c41a02212179 /src/yuzu/main.h | |
parent | 0974533c966e58f36312ac79fc958ab0c5cc080b (diff) |
Add support for batch install to NAND
This adds support to batch install files to NAND
Diffstat (limited to 'src/yuzu/main.h')
-rw-r--r-- | src/yuzu/main.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/yuzu/main.h b/src/yuzu/main.h index 8e3d39c38..55d072e96 100644 --- a/src/yuzu/main.h +++ b/src/yuzu/main.h @@ -28,6 +28,7 @@ class MicroProfileDialog; class ProfilerWidget; class QLabel; class QPushButton; +class QProgressDialog; class WaitTreeWidget; enum class GameListOpenTarget; class GameListPlaceholder; @@ -272,6 +273,9 @@ private: HotkeyRegistry hotkey_registry; + // Install to NAND progress dialog + QProgressDialog* install_progress; + protected: void dropEvent(QDropEvent* event) override; void dragEnterEvent(QDragEnterEvent* event) override; |