mirror of
https://github.com/ddnet/ddnet.git
synced 2024-11-18 22:18:19 +00:00
Remove unused FLAG_REPEAT
This commit is contained in:
parent
ecc49a699f
commit
adc813493a
|
@ -41,10 +41,9 @@ protected:
|
||||||
public:
|
public:
|
||||||
enum
|
enum
|
||||||
{
|
{
|
||||||
FLAG_PRESS = 1,
|
FLAG_PRESS = 1 << 0,
|
||||||
FLAG_RELEASE = 2,
|
FLAG_RELEASE = 1 << 1,
|
||||||
FLAG_REPEAT = 4,
|
FLAG_TEXT = 1 << 2,
|
||||||
FLAG_TEXT = 8,
|
|
||||||
};
|
};
|
||||||
enum ECursorType
|
enum ECursorType
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue