Skip to content

Commit

Permalink
SPU: Minor cleanup of exception in stop_and_signal
Browse files Browse the repository at this point in the history
  • Loading branch information
elad335 authored and AniLeo committed May 14, 2020
1 parent 54dd9f4 commit 61f43d7
Showing 1 changed file with 1 addition and 8 deletions.
9 changes: 1 addition & 8 deletions rpcs3/Emu/Cell/SPUThread.cpp
Expand Up @@ -3226,14 +3226,7 @@ bool spu_thread::stop_and_signal(u32 code)
}
}

if (!ch_out_mbox.get_count())
{
fmt::throw_exception("Unknown STOP code: 0x%x (Out_MBox is empty)" HERE, code);
}
else
{
fmt::throw_exception("Unknown STOP code: 0x%x (Out_MBox=0x%x)" HERE, code, ch_out_mbox.get_value());
}
fmt::throw_exception("Unknown STOP code: 0x%x (Out_MBox=%s)" HERE, code, ch_out_mbox);
}

void spu_thread::halt()
Expand Down

0 comments on commit 61f43d7

Please sign in to comment.