Remove saving of debug file.

This commit is contained in:
Matthew Parlane 2012-12-30 17:48:33 +13:00
parent cc4d491d6c
commit 35466fb54f

View File

@ -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)