diff options
author | Morph <39850852+Morph1984@users.noreply.github.com> | 2020-07-09 18:19:06 +0200 |
---|---|---|
committer | Morph <39850852+Morph1984@users.noreply.github.com> | 2020-07-10 06:37:39 +0200 |
commit | 47e26d7bc78d5ee73776def99a92d3519e6c9d0f (patch) | |
tree | 81ba541e510280dcb32027db51b41e6abf1fded9 /src/core/settings.h | |
parent | Merge pull request #4285 from ogniK5377/fmt-fix (diff) | |
download | yuzu-47e26d7bc78d5ee73776def99a92d3519e6c9d0f.tar yuzu-47e26d7bc78d5ee73776def99a92d3519e6c9d0f.tar.gz yuzu-47e26d7bc78d5ee73776def99a92d3519e6c9d0f.tar.bz2 yuzu-47e26d7bc78d5ee73776def99a92d3519e6c9d0f.tar.lz yuzu-47e26d7bc78d5ee73776def99a92d3519e6c9d0f.tar.xz yuzu-47e26d7bc78d5ee73776def99a92d3519e6c9d0f.tar.zst yuzu-47e26d7bc78d5ee73776def99a92d3519e6c9d0f.zip |
Diffstat (limited to '')
-rw-r--r-- | src/core/settings.h | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/src/core/settings.h b/src/core/settings.h index 850ca4072..29dc57c16 100644 --- a/src/core/settings.h +++ b/src/core/settings.h @@ -346,31 +346,6 @@ struct TouchscreenInput { u32 rotation_angle; }; -enum class NANDTotalSize : u64 { - S29_1GB = 0x747C00000ULL, -}; - -enum class NANDUserSize : u64 { - S26GB = 0x680000000ULL, -}; - -enum class NANDSystemSize : u64 { - S2_5GB = 0xA0000000, -}; - -enum class SDMCSize : u64 { - S1GB = 0x40000000, - S2GB = 0x80000000, - S4GB = 0x100000000ULL, - S8GB = 0x200000000ULL, - S16GB = 0x400000000ULL, - S32GB = 0x800000000ULL, - S64GB = 0x1000000000ULL, - S128GB = 0x2000000000ULL, - S256GB = 0x4000000000ULL, - S1TB = 0x10000000000ULL, -}; - enum class RendererBackend { OpenGL = 0, Vulkan = 1, @@ -491,10 +466,6 @@ struct Values { bool gamecard_inserted; bool gamecard_current_game; std::string gamecard_path; - NANDTotalSize nand_total_size; - NANDSystemSize nand_system_size; - NANDUserSize nand_user_size; - SDMCSize sdmc_size; // Debugging bool record_frame_times; |