Remove unused BOUNDS type from PebbleObject

This commit is contained in:
= 2021-07-22 17:08:53 +01:00
parent 10b2bc6938
commit ea04af7b6b
1 changed files with 0 additions and 2 deletions

View File

@ -4,7 +4,6 @@
enum PebbleType {
WINDOW,
TEXT_LAYER,
BOUNDS,
P_ERROR
};
@ -19,7 +18,6 @@ struct PebbleObject {
union {
Window *window;
struct PLTextLayer *textLayer;
GRect bounds;
void *ptr;
};
};