Skip to content

Commit

Permalink
Lower memory usage
Browse files Browse the repository at this point in the history
  • Loading branch information
schkwve committed Mar 7, 2024
1 parent 01cb38e commit d21fab0
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion nighterm.h
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,8 @@ struct nighterm_terminal
#ifdef NIGHTERM_MALLOC_IS_AVAILABLE
uint32_t* backbuffer;
#else
uint32_t backbuffer[1920 * (4 * 1080)];
//uint32_t backbuffer[1920 * (4 * 1080)];
uint32_t backbuffer; // placeholder
#endif

uint32_t fg_color;
Expand Down

0 comments on commit d21fab0

Please sign in to comment.