mirror of
https://github.com/shadps4-emu/shadPS4.git
synced 2025-05-28 22:33:17 +00:00
video_core: amdgpu: simply crash if an exception occured in coro
This commit is contained in:
parent
863d80c16c
commit
23cc60bf06
1 changed files with 3 additions and 1 deletions
|
@ -834,7 +834,9 @@ private:
|
||||||
static constexpr std::suspend_always final_suspend() noexcept {
|
static constexpr std::suspend_always final_suspend() noexcept {
|
||||||
return {};
|
return {};
|
||||||
}
|
}
|
||||||
void unhandled_exception() {}
|
void unhandled_exception() {
|
||||||
|
UNREACHABLE();
|
||||||
|
}
|
||||||
void return_void() {}
|
void return_void() {}
|
||||||
struct empty {};
|
struct empty {};
|
||||||
std::suspend_always yield_value(empty&&) {
|
std::suspend_always yield_value(empty&&) {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue