Skip to content
Snippets Groups Projects
Commit 8cf14288 authored by rswindell's avatar rswindell
Browse files

Enforce 5-digit max table limit.

Display table ante/bet details in table listing.
parent 9274543c
No related branches found
No related tags found
No related merge requests found
......@@ -205,7 +205,7 @@ void edit_table(int table)
break;
case 4: /* Table Limit */
sprintf(str,"%d",tables[table].max_total);
if(uifc.input(WIN_MID|WIN_SAV,0,0,"Table Limit",str,10,K_EDIT|K_NUMBER)!=-1)
if(uifc.input(WIN_MID|WIN_SAV,0,0,"Table Limit",str,5,K_EDIT|K_NUMBER)!=-1)
tables[table].max_total=atoi(str);
if(tables[table].max_total<1)
tables[table].max_total=1;
......@@ -298,7 +298,8 @@ int main(int argc, char **argv)
case 4: /* Table configuration */
while(1) {
for(i=0;i<num_tables;i++) {
sprintf(str,"Table %d",i+1);
sprintf(str,"Table %-2d (%u/%u/%u)",i+1
,tables[i].ante,tables[i].bet_limit,tables[i].max_total);
topts[i]=strdup(str);
}
topts[i]=strdup("");
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment