summaryrefslogtreecommitdiff
path: root/Source/Core
diff options
context:
space:
mode:
authorAdmiral H. Curtiss <pikachu025@gmail.com>2020-08-09 03:28:33 +0200
committerAdmiral H. Curtiss <pikachu025@gmail.com>2020-08-24 19:33:28 +0200
commit4b91c071c167abdf5768da33f949a4b74fe43986 (patch)
tree18e8267675867d4d54a496249221b50dc632abad /Source/Core
parentc36ae84b966327bd9d78d3eabf2309f82d37792e (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.cpp7
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;