aboutsummaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorMarvin Borner2020-10-06 11:11:12 +0200
committerMarvin Borner2020-10-06 11:11:12 +0200
commit9c8bbbf362beca4fd4268334704a790568e6bd51 (patch)
tree416772d0aaecc211d6de0ad36ae0b9900a2c3ea4 /apps
parent4cb43182fd1021781fe2c160eb0378ba42a75d0c (diff)
Added newline at overflow
Diffstat (limited to 'apps')
-rw-r--r--apps/window.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/apps/window.c b/apps/window.c
index 6309e51..208c4d4 100644
--- a/apps/window.c
+++ b/apps/window.c
@@ -45,6 +45,11 @@ int main()
if (!event->press)
break;
+ if (char_x * font_width >= (int)win.width) {
+ char_y++;
+ char_x = 0;
+ }
+
if (ch == '\n') {
char_x = 0;
char_y++;