From e81d25562d7aa76337e5913b67a3df9d280a4d80 Mon Sep 17 00:00:00 2001 From: nakeee Date: Mon, 19 Oct 2009 18:28:47 +0000 Subject: [PATCH] Linux compile fix (shuffle please review..) git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@4438 8ced0084-cf51-0410-be5f-012b33b47a6e --- Source/Core/Core/Src/HW/SI_DeviceAMBaseboard.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Source/Core/Core/Src/HW/SI_DeviceAMBaseboard.cpp b/Source/Core/Core/Src/HW/SI_DeviceAMBaseboard.cpp index 0138f44563..d5ee4f83ea 100644 --- a/Source/Core/Core/Src/HW/SI_DeviceAMBaseboard.cpp +++ b/Source/Core/Core/Src/HW/SI_DeviceAMBaseboard.cpp @@ -289,10 +289,10 @@ int CSIDevice_AMBaseboard::RunBuffer(u8* _pBuffer, int _iLength) break; case 0x14: // get features msg.addData(1); - msg.addData("\x01\x02\x0a\x00", 4); // 2 player, 10 bit - msg.addData("\x02\x02\x00\x00", 4); // 2 coin slots - //msg.addData("\x03\x02\x08\x00", 4); - msg.addData("\x00\x00\x00\x00", 4); + msg.addData((void *)"\x01\x02\x0a\x00", 4); // 2 player, 10 bit + msg.addData((void *)"\x02\x02\x00\x00", 4); // 2 coin slots + //msg.addData((void *)"\x03\x02\x08\x00", 4); + msg.addData((void *)"\x00\x00\x00\x00", 4); break; case 0x15: while (*jvs_io++);