core.h: remove nodiscard for SendSignal (#5837)
We use this in four places and discard the result everywhere
This commit is contained in:
parent
89410c164a
commit
a1b4daa9d4
|
@ -122,7 +122,7 @@ public:
|
|||
|
||||
enum class Signal : u32 { None, Shutdown, Reset, Save, Load };
|
||||
|
||||
[[nodiscard]] bool SendSignal(Signal signal, u32 param = 0);
|
||||
bool SendSignal(Signal signal, u32 param = 0);
|
||||
|
||||
/// Request reset of the system
|
||||
void RequestReset() {
|
||||
|
|
Reference in New Issue