Debugger: Fix missing return path. (#8094)

This commit is contained in:
Ziemas 2023-02-09 20:48:54 +01:00 committed by GitHub
parent 26d6c33163
commit bca49184e7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 0 deletions

View File

@ -137,6 +137,7 @@ public:
case EEWaitStatus::WAIT_SEMA:
return WaitState::SEMA;
}
return WaitState::NONE;
};
[[nodiscard]] u32 EntryPoint() const override { return data.entry_init; };
[[nodiscard]] u32 StackTop() const override { return data.stack; };