a bit of more work in SDIO

git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@2055 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
omegadox 2009-02-01 14:27:35 +00:00
parent 7299ed4ad6
commit 3bd8f73844
1 changed files with 5 additions and 1 deletions

View File

@ -15,12 +15,16 @@
// Official SVN repository and contact information can be found at
// http://code.google.com/p/dolphin-emu/
// HW Address: 0d07xxxx
#include "SDInterface.h"
namespace SDInterface {
bool g_bIsCardInserted = false;
bool IsCardInserted()
{
return false; // TODO
return g_bIsCardInserted;
}
}