Skip to content
Snippets Groups Projects
Commit e0983995 authored by deuce's avatar deuce
Browse files

Fix a bug in deleting tables.

parent 05b93f51
No related branches found
No related tags found
No related merge requests found
......@@ -317,7 +317,7 @@ int main(int argc, char **argv)
else if(i&MSK_DEL) {
if(num_tables>1) {
num_tables--;
memcpy(&tables[topt],&tables[topt+1],sizeof(tables[topt])*(MAX_TABLES-opt-1));
memcpy(&tables[topt],&tables[topt+1],sizeof(tables[topt])*(MAX_TABLES-topt-1));
tables[MAX_TABLES-1].options=COMPUTER;
tables[MAX_TABLES-1].ante=250;
tables[MAX_TABLES-1].bet_limit=250;
......
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