Commit 529c9ba8 authored by nanahira's avatar nanahira Committed by GitHub

fix faceup deck card display pos

parent c056c7ea
...@@ -100,9 +100,9 @@ bool card::card_operation_sort(card* c1, card* c2) { ...@@ -100,9 +100,9 @@ bool card::card_operation_sort(card* c1, card* c2) {
// faceup deck cards should go at the very first // faceup deck cards should go at the very first
if(c1->current.position != c2->current.position) { if(c1->current.position != c2->current.position) {
if(c1->current.position & POS_FACEUP) if(c1->current.position & POS_FACEUP)
return true;
else
return false; return false;
else
return true;
} }
// sort deck as card property // sort deck as card property
auto c1_type = c1->current.type & 0x7; auto c1_type = c1->current.type & 0x7;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment