I think the passengers system works

This commit is contained in:
Tenari
2026-03-18 07:27:01 -05:00
parent 6ec461ef3e
commit 58b80e53d0
4 changed files with 84 additions and 13 deletions
+3
View File
@@ -240,6 +240,9 @@ fn void renderStrToBuffer(Pixel* buf, u16 x, u16 y, str text, Dim2 screen_dimens
u32 pos = x + (screen_dimensions.width*y);
for (u32 i = 0; i < strlen(text); i++) {
buf[pos+i].bytes[0] = text[i];
buf[pos+i].bytes[1] = 0;
buf[pos+i].bytes[2] = 0;
buf[pos+i].bytes[3] = 0;
}
}