diff options
| author | Mario Kilies <MarioKilies@GMX.net> | 2011-01-14 04:32:35 +0100 |
|---|---|---|
| committer | Mario Kilies <MarioKilies@GMX.net> | 2011-01-14 04:32:35 +0100 |
| commit | 9c855d16f1a737ddd9bde72e0fc51f4fd0a1e042 (patch) | |
| tree | 6d7f46a8aef12232c7ffd12fc9369d3f339444f6 /src/main.c | |
| parent | 0dfe9ff514cb6e3ffe9bfd394aebeb54445edc03 (diff) | |
Implemented hand_sort(). ui_choose_card() now pre-selects the card with lowest index, if at index 0 is no card. draw_card() now draws empty placeholder cards, to clear old screen content.
Diffstat (limited to 'src/main.c')
| -rw-r--r-- | src/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -26,7 +26,7 @@ int main(int argc, char **argv) const uint32_t score = 10; // Example data set for hand cards window - const hand h = {12, 0, 22, 25, 27, 69, 77, 85, 100, 103}; + hand h = {22, 0, 12, 85, 27, 69, 78, 0, 77, 0}; ui_init(); ui_display_wnd_table_cards(ts, false, 0); |
