Emu: some cleanup

This commit is contained in:
Megamouse 2021-04-07 23:05:18 +02:00
parent a3e8a61547
commit 03b76b4606
149 changed files with 957 additions and 1139 deletions

View file

@ -10,7 +10,7 @@
class basic_mouse_handler final : public MouseHandlerBase, public QObject
{
public:
virtual void Init(const u32 max_connect) override;
void Init(const u32 max_connect) override;
basic_mouse_handler();
@ -23,5 +23,5 @@ public:
bool eventFilter(QObject* obj, QEvent* ev) override;
private:
QWindow* m_target = nullptr;
bool get_mouse_lock_state();
bool get_mouse_lock_state() const;
};