summaryrefslogtreecommitdiffstats
path: root/src/yuzu/main.h
diff options
context:
space:
mode:
authorZach Hilman <zachhilman@gmail.com>2018-09-04 01:23:10 +0200
committerZach Hilman <zachhilman@gmail.com>2018-09-04 01:23:33 +0200
commit04397cd185bf6f6f8c979df4fe48379f669f0ed5 (patch)
tree4c47ee24a8a6b5d9ea8edcf9b01390dd0259a52a /src/yuzu/main.h
parentqt: Add UI options to change NAND/SD dirs (diff)
downloadyuzu-04397cd185bf6f6f8c979df4fe48379f669f0ed5.tar
yuzu-04397cd185bf6f6f8c979df4fe48379f669f0ed5.tar.gz
yuzu-04397cd185bf6f6f8c979df4fe48379f669f0ed5.tar.bz2
yuzu-04397cd185bf6f6f8c979df4fe48379f669f0ed5.tar.lz
yuzu-04397cd185bf6f6f8c979df4fe48379f669f0ed5.tar.xz
yuzu-04397cd185bf6f6f8c979df4fe48379f669f0ed5.tar.zst
yuzu-04397cd185bf6f6f8c979df4fe48379f669f0ed5.zip
Diffstat (limited to 'src/yuzu/main.h')
-rw-r--r--src/yuzu/main.h8
1 files changed, 6 insertions, 2 deletions
diff --git a/src/yuzu/main.h b/src/yuzu/main.h
index b85149f8e..56b592a9e 100644
--- a/src/yuzu/main.h
+++ b/src/yuzu/main.h
@@ -32,6 +32,11 @@ namespace Tegra {
class DebugContext;
}
+enum class EmulatedDirectoryTarget {
+ NAND,
+ SDMC,
+};
+
class GMainWindow : public QMainWindow {
Q_OBJECT
@@ -138,8 +143,7 @@ private slots:
/// Called whenever a user selects the "File->Select Game List Root" menu item
void OnMenuSelectGameListRoot();
/// Called whenever a user select the "File->Select -- Directory" where -- is NAND or SD Card
- /// (false for nand, true for sdmc)
- void OnMenuSelectEmulatedDirectory(bool is_sdmc);
+ void OnMenuSelectEmulatedDirectory(EmulatedDirectoryTarget target);
void OnMenuRecentFile();
void OnConfigure();
void OnAbout();