WII IPC HLE: error logging instead of panicalerts for unknown DVD operations.

git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@3478 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
hrydgard 2009-06-17 19:03:30 +00:00
parent a852b6228d
commit 9d9ce4274b

View File

@ -304,22 +304,22 @@ u32 CWII_IPC_HLE_Device_di::ExecuteCommand(u32 _BufferIn, u32 _BufferInSize, u32
// DVDLowNotifyReset // DVDLowNotifyReset
case 0x7e: case 0x7e:
PanicAlert("DVDLowNotifyReset"); ERROR_LOG(WII_IPC_DVD, "DVDLowNotifyReset");
break; break;
// DVDLowReadDvdPhysical // DVDLowReadDvdPhysical
case 0x80: case 0x80:
PanicAlert("DVDLowReadDvdPhysical"); ERROR_LOG(WII_IPC_DVD, "DVDLowReadDvdPhysical");
break; break;
// DVDLowReadDvdCopyright // DVDLowReadDvdCopyright
case 0x81: case 0x81:
PanicAlert("DVDLowReadDvdCopyright"); ERROR_LOG(WII_IPC_DVD, "DVDLowReadDvdCopyright");
break; break;
// DVDLowReadDvdDiscKey // DVDLowReadDvdDiscKey
case 0x82: case 0x82:
PanicAlert("DVDLowReadDvdDiscKey"); ERROR_LOG(WII_IPC_DVD, "DVDLowReadDvdDiscKey");
break; break;
// DVDLowClearCoverInterrupt // DVDLowClearCoverInterrupt
@ -351,7 +351,7 @@ u32 CWII_IPC_HLE_Device_di::ExecuteCommand(u32 _BufferIn, u32 _BufferInSize, u32
// DVDLowOpenPartition // DVDLowOpenPartition
case 0x8b: case 0x8b:
PanicAlert("DVDLowOpenPartition"); ERROR_LOG(WII_IPC_DVD, "DVDLowOpenPartition");
return 1; return 1;
break; break;
@ -412,7 +412,7 @@ u32 CWII_IPC_HLE_Device_di::ExecuteCommand(u32 _BufferIn, u32 _BufferInSize, u32
// DVDLowEnableDvdVideo // DVDLowEnableDvdVideo
case 0x8e: case 0x8e:
PanicAlert("DVDLowEnableDvdVideo"); ERROR_LOG(WII_IPC_DVD, "DVDLowEnableDvdVideo");
break; break;
// DVDLowReportKey // DVDLowReportKey
@ -425,53 +425,53 @@ u32 CWII_IPC_HLE_Device_di::ExecuteCommand(u32 _BufferIn, u32 _BufferInSize, u32
// DVDLowSeek // DVDLowSeek
case 0xab: case 0xab:
PanicAlert("DVDLowSeek"); ERROR_LOG(WII_IPC_DVD, "DVDLowSeek");
break; break;
// Apparently Dx commands have never been seen in dolphin? *shrug* // Apparently Dx commands have never been seen in dolphin? *shrug*
// DVDLowReadDvd // DVDLowReadDvd
case 0xd0: case 0xd0:
PanicAlert("DVDLowReadDvd"); ERROR_LOG(WII_IPC_DVD, "DVDLowReadDvd");
break; break;
// DVDLowReadDvdConfig // DVDLowReadDvdConfig
case 0xd1: case 0xd1:
PanicAlert("DVDLowReadDvdConfig"); ERROR_LOG(WII_IPC_DVD, "DVDLowReadDvdConfig");
break; break;
// DVDLowStopLaser // DVDLowStopLaser
case 0xd2: case 0xd2:
PanicAlert("DVDLowStopLaser"); ERROR_LOG(WII_IPC_DVD, "DVDLowStopLaser");
break; break;
// DVDLowOffset // DVDLowOffset
case 0xd9: case 0xd9:
PanicAlert("DVDLowOffset"); ERROR_LOG(WII_IPC_DVD, "DVDLowOffset");
break; break;
// DVDLowReadDiskBca // DVDLowReadDiskBca
case 0xda: case 0xda:
PanicAlert("DVDLowReadDiskBca"); ERROR_LOG(WII_IPC_DVD, "DVDLowReadDiskBca");
break; break;
// DVDLowRequestDiscStatus // DVDLowRequestDiscStatus
case 0xdb: case 0xdb:
PanicAlert("DVDLowRequestDiscStatus"); ERROR_LOG(WII_IPC_DVD, "DVDLowRequestDiscStatus");
break; break;
// DVDLowRequestRetryNumber // DVDLowRequestRetryNumber
case 0xdc: case 0xdc:
PanicAlert("DVDLowRequestRetryNumber"); ERROR_LOG(WII_IPC_DVD, "DVDLowRequestRetryNumber");
break; break;
// DVDLowSetMaximumRotation // DVDLowSetMaximumRotation
case 0xdd: case 0xdd:
PanicAlert("DVDLowSetMaximumRotation"); ERROR_LOG(WII_IPC_DVD, "DVDLowSetMaximumRotation");
break; break;
// DVDLowSerMeasControl // DVDLowSerMeasControl
case 0xdf: case 0xdf:
PanicAlert("DVDLowSerMeasControl"); ERROR_LOG(WII_IPC_DVD, "DVDLowSerMeasControl");
break; break;
// DVDLowRequestError // DVDLowRequestError
@ -499,7 +499,7 @@ u32 CWII_IPC_HLE_Device_di::ExecuteCommand(u32 _BufferIn, u32 _BufferInSize, u32
// DVDLowAudioBufferConfig // DVDLowAudioBufferConfig
case 0xe4: case 0xe4:
PanicAlert("DVDLowAudioBufferConfig"); ERROR_LOG(WII_IPC_DVD, "DVDLowAudioBufferConfig");
break; break;
default: default: