mirror of
https://github.com/RPCS3/rpcs3.git
synced 2024-12-29 03:24:36 +00:00
Fix crash on exit in some tests
It started occurring recently though the problem seems to be old. Only KeyboardHandlerBase is the fix, the MouseHandler one is to be safe.
This commit is contained in:
parent
b46c66b4c7
commit
009aa3dcb9
@ -265,6 +265,7 @@ protected:
|
||||
public:
|
||||
virtual void Init(const u32 max_connect)=0;
|
||||
virtual void Close()=0;
|
||||
virtual ~KeyboardHandlerBase() = default;
|
||||
|
||||
void Key(const u32 code, bool pressed)
|
||||
{
|
||||
|
@ -106,6 +106,7 @@ protected:
|
||||
public:
|
||||
virtual void Init(const u32 max_connect)=0;
|
||||
virtual void Close()=0;
|
||||
virtual ~MouseHandlerBase() = default;
|
||||
|
||||
void Button(u8 button, bool pressed)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user