summaryrefslogtreecommitdiff
path: root/Source/Core
diff options
context:
space:
mode:
authorJMC47 <JMC4789@gmail.com>2020-04-16 18:27:51 -0400
committerGitHub <noreply@github.com>2020-04-16 18:27:51 -0400
commit19fc43f190545fa5c5cb490a7cb34715db61430a (patch)
treed5b8831da7818ec23c67ccd8e21171debdcb7c69 /Source/Core
parent55ed980620d8b1b024379e99f37e39d00f28ebb2 (diff)
parenta3ff20a5f93d8ab6b246de9fde011fabd1d15e5c (diff)
Merge pull request #8708 from Ebola16/Wii
Android: Add Insert SD Card and update the description
Diffstat (limited to 'Source/Core')
-rw-r--r--Source/Core/Core/IOS/SDIO/SDIOSlot0.cpp2
-rw-r--r--Source/Core/DolphinQt/Settings/WiiPane.cpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/Source/Core/Core/IOS/SDIO/SDIOSlot0.cpp b/Source/Core/Core/IOS/SDIO/SDIOSlot0.cpp
index 26861eee65..78ec7a0ce3 100644
--- a/Source/Core/Core/IOS/SDIO/SDIOSlot0.cpp
+++ b/Source/Core/Core/IOS/SDIO/SDIOSlot0.cpp
@@ -62,7 +62,7 @@ void SDIOSlot0::OpenInternal()
m_card.Open(filename, "r+b");
if (!m_card)
{
- WARN_LOG(IOS_SD, "Failed to open SD Card image, trying to create a new 128MB image...");
+ WARN_LOG(IOS_SD, "Failed to open SD Card image, trying to create a new 128 MB image...");
if (Common::SDCardCreate(128, filename))
{
INFO_LOG(IOS_SD, "Successfully created %s", filename.c_str());
diff --git a/Source/Core/DolphinQt/Settings/WiiPane.cpp b/Source/Core/DolphinQt/Settings/WiiPane.cpp
index 35f9af561a..2a4771292a 100644
--- a/Source/Core/DolphinQt/Settings/WiiPane.cpp
+++ b/Source/Core/DolphinQt/Settings/WiiPane.cpp
@@ -130,7 +130,7 @@ void WiiPane::CreateMisc()
"(576i) for PAL games.\nMay not work for all games."));
m_screensaver_checkbox->setToolTip(tr("Dims the screen after five minutes of inactivity."));
m_system_language_choice->setToolTip(tr("Sets the Wii system language."));
- m_sd_card_checkbox->setToolTip(tr("Saved to /Wii/sd.raw (default size is 128mb)."));
+ m_sd_card_checkbox->setToolTip(tr("Supports SD and SDHC. Default size is 128 MB."));
m_connect_keyboard_checkbox->setToolTip(tr("May cause slow down in Wii Menu and some games."));
misc_settings_group_layout->addWidget(m_pal60_mode_checkbox, 0, 0, 1, 1);