From 3bd8f73844150791c2b333902ad270d2efd5743f Mon Sep 17 00:00:00 2001 From: omegadox Date: Sun, 1 Feb 2009 14:27:35 +0000 Subject: [PATCH] a bit of more work in SDIO git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@2055 8ced0084-cf51-0410-be5f-012b33b47a6e --- Source/Core/Core/Src/IPC_HLE/HW/SDInterface.cpp | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Source/Core/Core/Src/IPC_HLE/HW/SDInterface.cpp b/Source/Core/Core/Src/IPC_HLE/HW/SDInterface.cpp index 258d882f39..ebe6ad59ba 100644 --- a/Source/Core/Core/Src/IPC_HLE/HW/SDInterface.cpp +++ b/Source/Core/Core/Src/IPC_HLE/HW/SDInterface.cpp @@ -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; } } \ No newline at end of file