Merge pull request #6814 from lioncash/sd

SDCardUtil: Minor changes
This commit is contained in:
Anthony
2018-05-11 12:39:17 -07:00
committed by GitHub
3 changed files with 97 additions and 97 deletions

View File

@ -67,7 +67,7 @@ void SDIOSlot0::OpenInternal()
if (!m_card)
{
WARN_LOG(IOS_SD, "Failed to open SD Card image, trying to create a new 128MB image...");
if (SDCardCreate(128, filename))
if (Common::SDCardCreate(128, filename))
{
INFO_LOG(IOS_SD, "Successfully created %s", filename.c_str());
m_card.Open(filename, "r+b");