diff options
| author | Admiral H. Curtiss <pikachu025@gmail.com> | 2020-08-09 03:28:33 +0200 |
|---|---|---|
| committer | Admiral H. Curtiss <pikachu025@gmail.com> | 2020-08-24 19:33:28 +0200 |
| commit | 4b91c071c167abdf5768da33f949a4b74fe43986 (patch) | |
| tree | 18e8267675867d4d54a496249221b50dc632abad /Source/Core | |
| parent | c36ae84b966327bd9d78d3eabf2309f82d37792e (diff) | |
Qt/GCMemcardCreateNewDialog: Use zero values for formatting instead of accessing g_SRAM.
Diffstat (limited to 'Source/Core')
| -rw-r--r-- | Source/Core/DolphinQt/GCMemcardCreateNewDialog.cpp | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/Source/Core/DolphinQt/GCMemcardCreateNewDialog.cpp b/Source/Core/DolphinQt/GCMemcardCreateNewDialog.cpp index b54766d157..07f8ba454c 100644 --- a/Source/Core/DolphinQt/GCMemcardCreateNewDialog.cpp +++ b/Source/Core/DolphinQt/GCMemcardCreateNewDialog.cpp @@ -77,10 +77,9 @@ bool GCMemcardCreateNewDialog::CreateCard() if (path.isEmpty()) return false; - // TODO: The dependency on g_SRAM here is sketchy. We should instead use sensible default values. - const CardFlashId& flash_id = g_SRAM.settings_ex.flash_id[Memcard::SLOT_A]; - const u32 rtc_bias = g_SRAM.settings.rtc_bias; - const u32 sram_language = static_cast<u32>(g_SRAM.settings.language); + const CardFlashId flash_id{}; + const u32 rtc_bias = 0; + const u32 sram_language = 0; const u64 format_time = Common::Timer::GetLocalTimeSinceJan1970() - ExpansionInterface::CEXIIPL::GC_EPOCH; |
