mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-24 14:49:42 -06:00
IRWidget: Move header constants into class
This apparently didn't compile on macOS six years ago before c++20, but it should be fine by now. While I'm at it, make the constants upper case per convention.
This commit is contained in:
@ -13,6 +13,11 @@ class IRWidget : public QWidget
|
||||
public:
|
||||
explicit IRWidget(QWidget* parent);
|
||||
|
||||
static constexpr u16 IR_MIN_X = 0;
|
||||
static constexpr u16 IR_MIN_Y = 0;
|
||||
static constexpr u16 IR_MAX_X = 1023;
|
||||
static constexpr u16 IR_MAX_Y = 767;
|
||||
|
||||
signals:
|
||||
void ChangedX(u16 x);
|
||||
void ChangedY(u16 y);
|
||||
@ -32,9 +37,3 @@ private:
|
||||
u16 m_y = 0;
|
||||
bool m_ignore_movement = false;
|
||||
};
|
||||
|
||||
// Should be part of class but fails to compile on mac os
|
||||
static const u16 ir_min_x = 0;
|
||||
static const u16 ir_min_y = 0;
|
||||
static const u16 ir_max_x = 1023;
|
||||
static const u16 ir_max_y = 767;
|
||||
|
Reference in New Issue
Block a user