Remove unused enum
This commit is contained in:
parent
8c6b56fc39
commit
0d6e6a7c96
8
libs/core/enums.d.ts
vendored
8
libs/core/enums.d.ts
vendored
@ -14,12 +14,4 @@
|
|||||||
Double = 0x10,
|
Double = 0x10,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
declare enum ScreenFont {
|
|
||||||
Normal = 0, // FONTTYPE_NORMAL
|
|
||||||
Small = 1, // FONTTYPE_SMALL
|
|
||||||
Large = 2, // FONTTYPE_LARGE
|
|
||||||
Tiny = 3, // FONTTYPE_TINY
|
|
||||||
}
|
|
||||||
|
|
||||||
// Auto-generated. Do not edit. Really.
|
// Auto-generated. Do not edit. Really.
|
||||||
|
@ -22,12 +22,6 @@ inline Draw operator|(Draw a, Draw b) {
|
|||||||
return (Draw)((int)a | (int)b);
|
return (Draw)((int)a | (int)b);
|
||||||
}
|
}
|
||||||
|
|
||||||
enum class ScreenFont {
|
|
||||||
Normal = FONTTYPE_NORMAL,
|
|
||||||
Small = FONTTYPE_SMALL,
|
|
||||||
Large = FONTTYPE_LARGE,
|
|
||||||
Tiny = FONTTYPE_TINY,
|
|
||||||
};
|
|
||||||
|
|
||||||
#define XX(v) ((uint32_t)(v)&0xffff)
|
#define XX(v) ((uint32_t)(v)&0xffff)
|
||||||
#define YY(v) ((uint32_t)(v) >> 16)
|
#define YY(v) ((uint32_t)(v) >> 16)
|
||||||
|
Loading…
Reference in New Issue
Block a user