diff options
author | Zach Hilman <zachhilman@gmail.com> | 2019-04-23 14:35:12 +0200 |
---|---|---|
committer | Zach Hilman <zachhilman@gmail.com> | 2019-09-21 22:43:10 +0200 |
commit | 2590b5a9ea51f6868cac4322b2e4984d65656541 (patch) | |
tree | c7d2be3ecac40031e3b34950710b0d234e7e0385 /src/core | |
parent | settings: Add options for setting storage sizes (diff) | |
download | yuzu-2590b5a9ea51f6868cac4322b2e4984d65656541.tar yuzu-2590b5a9ea51f6868cac4322b2e4984d65656541.tar.gz yuzu-2590b5a9ea51f6868cac4322b2e4984d65656541.tar.bz2 yuzu-2590b5a9ea51f6868cac4322b2e4984d65656541.tar.lz yuzu-2590b5a9ea51f6868cac4322b2e4984d65656541.tar.xz yuzu-2590b5a9ea51f6868cac4322b2e4984d65656541.tar.zst yuzu-2590b5a9ea51f6868cac4322b2e4984d65656541.zip |
Diffstat (limited to 'src/core')
-rw-r--r-- | src/core/settings.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/core/settings.h b/src/core/settings.h index 51363fc51..47bddfb30 100644 --- a/src/core/settings.h +++ b/src/core/settings.h @@ -407,8 +407,9 @@ struct Values { // Data Storage bool use_virtual_sd; - std::string nand_dir; - std::string sdmc_dir; + bool gamecard_inserted; + bool gamecard_current_game; + std::string gamecard_path; NANDTotalSize nand_total_size; NANDSystemSize nand_system_size; NANDUserSize nand_user_size; |