some vibecoded fixes

This commit is contained in:
2026-01-29 14:28:56 +01:00
parent 2e6aa91f01
commit c5a15269c3
5 changed files with 319 additions and 85 deletions
+4 -4
View File
@@ -5,8 +5,8 @@
struct Cursor
{
unsigned short x;
unsigned short y;
short x;
short y;
Cursor() : x(0), y(0) {}
};
@@ -22,8 +22,8 @@ struct TextNode
{
char content[TEXT_MAX_LENGTH];
uint32_t color;
unsigned short pos_x;
unsigned short pos_y;
short pos_x;
short pos_y;
struct CharacterSize
{
unsigned short height;