From 070c9330889be5f9273c2f88a32ef02d727585b1 Mon Sep 17 00:00:00 2001 From: Pierre Bourdon Date: Sun, 25 Dec 2011 00:03:45 +0100 Subject: [PATCH] Revert "Add unimplemented device map for sdio/slot1 and slot2. Fixes #4932." This reverts commit 9a627e89fb2e5a8f00ad158fde595926298cc573. The attempted Kirby: Return to Dreamland fix does not work properly and while it fixes this particular game, it completely breaks SD card support on Dolphin. BTW, I've never head of /dev/sdio/slot2 before... --- Source/Core/Core/Src/IPC_HLE/WII_IPC_HLE.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/Source/Core/Core/Src/IPC_HLE/WII_IPC_HLE.cpp b/Source/Core/Core/Src/IPC_HLE/WII_IPC_HLE.cpp index 2f79e2bc91..2fa2587e60 100644 --- a/Source/Core/Core/Src/IPC_HLE/WII_IPC_HLE.cpp +++ b/Source/Core/Core/Src/IPC_HLE/WII_IPC_HLE.cpp @@ -93,8 +93,6 @@ void Init() g_DeviceMap[i] = new CWII_IPC_HLE_Device_net_ip_top(i, std::string("/dev/net/ip/top")); i++; g_DeviceMap[i] = new CWII_IPC_HLE_Device_usb_kbd(i, std::string("/dev/usb/kbd")); i++; g_DeviceMap[i] = new CWII_IPC_HLE_Device_sdio_slot0(i, std::string("/dev/sdio/slot0")); i++; - g_DeviceMap[i] = new CWII_IPC_HLE_Device_sdio_slot0(i, std::string("/dev/sdio/slot1")); i++; - g_DeviceMap[i] = new CWII_IPC_HLE_Device_sdio_slot0(i, std::string("/dev/sdio/slot2")); i++; g_DeviceMap[i] = new CWII_IPC_HLE_Device_stub(i, std::string("/dev/usb/hid")); i++; g_DeviceMap[i] = new IWII_IPC_HLE_Device(i, std::string("_Unimplemented_Device_"));