diff options
| author | Matthew Parlane <parlane@gmail.com> | 2013-10-06 16:22:44 +1300 |
|---|---|---|
| committer | Matthew Parlane <parlane@gmail.com> | 2013-10-06 16:22:44 +1300 |
| commit | 8722b9cfb59c6a337e990545e7ebb42269bfbede (patch) | |
| tree | 9895997574311067df50cec63fa6d245a245cb19 /Source | |
| parent | a7d073b0da953ad49e7a06ed2ca68c043976630f (diff) | |
Missing break for IOCTL_ES_DELETETITLECONTENT
Diffstat (limited to 'Source')
| -rw-r--r-- | Source/Core/Core/Src/IPC_HLE/WII_IPC_HLE_Device_es.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Source/Core/Core/Src/IPC_HLE/WII_IPC_HLE_Device_es.cpp b/Source/Core/Core/Src/IPC_HLE/WII_IPC_HLE_Device_es.cpp index 98e77c7695..f0ea0d545f 100644 --- a/Source/Core/Core/Src/IPC_HLE/WII_IPC_HLE_Device_es.cpp +++ b/Source/Core/Core/Src/IPC_HLE/WII_IPC_HLE_Device_es.cpp @@ -783,7 +783,8 @@ bool CWII_IPC_HLE_Device_es::IOCtlV(u32 _CommandAddress) Memory::Write_U32(ES_PARAMTER_SIZE_OR_ALIGNMENT, _CommandAddress + 0x4); } - } + } + break; case IOCTL_ES_GETSTOREDTMDSIZE: { _dbg_assert_msg_(WII_IPC_ES, Buffer.NumberInBuffer == 1, "IOCTL_ES_GETSTOREDTMDSIZE no in buffer"); |
