Skip to content

Commit

Permalink
Fix an alingment issue with columns in the kasse view (#56)
Browse files Browse the repository at this point in the history
  • Loading branch information
lysogeny authored Nov 5, 2023
1 parent f4d9424 commit 01f155c
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 01f155c

Please sign in to comment.