working on fixing tests

This commit is contained in:
2025-02-08 13:09:55 -08:00
parent 2edd898677
commit 587d52aab3
4 changed files with 9 additions and 6 deletions

View File

@@ -17,7 +17,6 @@ struct tart_window tart_create_window() {
for(int i = 0; i < 0xFF; i++) {
window.buffers[i] = tart_create_buffer(0, (struct tart_vec2){0,0},(struct tart_vec2){0,0});
}
char* data = (char*)malloc((size.x*size.y) * (sizeof(char) * TART_CELL_DATA_SIZE));
window.size = term_current_size();
return window;
}