scrolling workks without speed and some optimalization

This commit is contained in:
2026-01-30 09:17:06 +01:00
parent c5a15269c3
commit f669c2f292
2 changed files with 40 additions and 40 deletions
+2 -1
View File
@@ -31,11 +31,12 @@ struct TextNode
} characterSize;
unsigned char character_count;
unsigned char scroll_slowness;
unsigned char scroll_progress;
bool is_deleted;
bool is_scrolling;
TextNode() : color(0), pos_x(0), pos_y(0), character_count(0), scroll_slowness(1), characterSize({7,5}), is_deleted(true), is_scrolling() {}
TextNode() : color(0), pos_x(0), pos_y(0), character_count(0), scroll_slowness(0), scroll_progress(0), characterSize({7,5}), is_deleted(true), is_scrolling() {}
};
#endif // STRUCTS_H