mirror of
https://github.com/shadps4-emu/shadPS4.git
synced 2025-08-02 07:22:24 +00:00
video_core: fix break statement position
This commit is contained in:
parent
b041e255f3
commit
594c3ab6f8
@ -348,8 +348,8 @@ static std::string DisassemblePM4(std::span<const u32> cmds) {
|
|||||||
header->type0.count.Value()));
|
header->type0.count.Value()));
|
||||||
for (size_t i = 0; i < header->type0.count.Value(); i++)
|
for (size_t i = 0; i < header->type0.count.Value(); i++)
|
||||||
append(fmt::format("- 0x{:08X}\n", cmds.data()[1 + i]));
|
append(fmt::format("- 0x{:08X}\n", cmds.data()[1 + i]));
|
||||||
break;
|
|
||||||
cmds = cmds.subspan(header->type0.NumWords() + 1);
|
cmds = cmds.subspan(header->type0.NumWords() + 1);
|
||||||
|
break;
|
||||||
case 1:
|
case 1:
|
||||||
UNREACHABLE();
|
UNREACHABLE();
|
||||||
case 2:
|
case 2:
|
||||||
|
Loading…
Reference in New Issue
Block a user