summaryrefslogtreecommitdiff
path: root/Source/Core
diff options
context:
space:
mode:
authorMatthew Parlane <parlane@gmail.com>2012-12-30 17:48:33 +1300
committerMatthew Parlane <parlane@gmail.com>2012-12-30 17:48:33 +1300
commit35466fb54f95b78ffabfde5ade398f54de6f6b91 (patch)
tree3beefa555be4038b95472717fe8aee2bb91a8423 /Source/Core
parentcc4d491d6c65d244bd41f707cf45057f7b23d634 (diff)
Remove saving of debug file.
Diffstat (limited to 'Source/Core')
-rw-r--r--Source/Core/Core/Src/IPC_HLE/WII_IPC_HLE_Device_hid.cpp7
1 files changed, 0 insertions, 7 deletions
diff --git a/Source/Core/Core/Src/IPC_HLE/WII_IPC_HLE_Device_hid.cpp b/Source/Core/Core/Src/IPC_HLE/WII_IPC_HLE_Device_hid.cpp
index b214c13f63..21b58d2d91 100644
--- a/Source/Core/Core/Src/IPC_HLE/WII_IPC_HLE_Device_hid.cpp
+++ b/Source/Core/Core/Src/IPC_HLE/WII_IPC_HLE_Device_hid.cpp
@@ -449,13 +449,6 @@ void CWII_IPC_HLE_Device_hid::FillOutDevices(u32 BufferOut, u32 BufferOutSize)
Memory::Write_U32(0xFFFFFFFF, OffsetBuffer); // no more devices
- char file[0x50];
- snprintf(file, 0x50, "device_list.bin");
- FILE* test = fopen (file, "wb");
- fwrite((char*)Memory::GetPointer(BufferOut), 1, (OffsetBuffer - BufferOut)+4, test);
-
- fclose(test);
-
}
int CWII_IPC_HLE_Device_hid::Align(int num, int alignment)