Skip to content

Commit

Permalink
Fix an alingment issue with columns in the kasse view
Browse files Browse the repository at this point in the history
  • Loading branch information
lysogeny committed Nov 4, 2023
1 parent d2a0d2f commit a56ad18
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/kasse.c
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ void print_item(BYTE i, BYTE current_selection) {
}
cprintf("%2d", i);
textcolor(TC_LIGHT_GRAY);
cprintf(" %-" xstr(MAX_ITEM_NAME_LENGTH) "s \xDD%3dx %s",
cprintf(" %-" xstr(MAX_ITEM_NAME_LENGTH) "s \xDD%3dx%s ",
status.status[i].item_name, status.status[i].times_sold, profit);
}

Expand Down

0 comments on commit a56ad18

Please sign in to comment.