some cleanup
This commit is contained in:
@@ -1,3 +1,5 @@
|
||||
#include "config.h"
|
||||
|
||||
struct Cursor
|
||||
{
|
||||
unsigned short x;
|
||||
@@ -15,7 +17,7 @@ struct Pixel
|
||||
|
||||
struct Text
|
||||
{
|
||||
char content[SCROLLABLE_TEXT_MAX_LENGTH];
|
||||
char content[TEXT_MAX_LENGTH];
|
||||
uint32_t color;
|
||||
unsigned short pos_x;
|
||||
unsigned short pos_y;
|
||||
@@ -27,5 +29,6 @@ struct Text
|
||||
unsigned char character_count;
|
||||
bool deleted;
|
||||
|
||||
Text() : color(0), pos_x(0), pos_y(0), character_count(0), characterSize({7,5,0}), deleted(true) {}
|
||||
};
|
||||
|
||||
Text() : color(0), pos_x(0), pos_y(0), character_count(0), characterSize({7,5}), deleted(true) {}
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user