fixed building with MSVC (nw)

This commit is contained in:
smf- 2013-05-04 12:41:14 +00:00
parent 789f612966
commit ec16316c3f

View File

@ -693,7 +693,8 @@ void psxcd_device::cdcmd_test()
switch(cmdbuf[0]) switch(cmdbuf[0])
{ {
case 0x20: case 0x20:
static unsigned char data[4]= {
static UINT8 data[4]=
{ {
0x95, 0x95,
0x07, 0x07,
@ -703,6 +704,7 @@ void psxcd_device::cdcmd_test()
send_result(intr_complete,data,4); send_result(intr_complete,data,4);
break; break;
}
default: default:
verboselog(machine(), 0, "psxcd: unimplemented test cmd %02x\n", cmdbuf[0]); verboselog(machine(), 0, "psxcd: unimplemented test cmd %02x\n", cmdbuf[0]);