mirror of
https://github.com/DarkFlippers/unleashed-firmware.git
synced 2024-12-26 06:42:02 +03:00
Merge pull request #253 from teeebor/bugfix/solitaire-wrong-top-row-placement
Fix for solitaire card placement bug
This commit is contained in:
commit
8457da39e0
@ -255,6 +255,10 @@ bool place_on_top(Card* where, Card what) {
|
|||||||
int8_t b_letter = (int8_t)what.character;
|
int8_t b_letter = (int8_t)what.character;
|
||||||
if(a_letter == 12) a_letter = -1;
|
if(a_letter == 12) a_letter = -1;
|
||||||
if(b_letter == 12) b_letter = -1;
|
if(b_letter == 12) b_letter = -1;
|
||||||
|
|
||||||
|
if(where->disabled && b_letter != -1)
|
||||||
|
return false;
|
||||||
|
|
||||||
if((a_letter + 1) == b_letter) {
|
if((a_letter + 1) == b_letter) {
|
||||||
where->disabled = what.disabled;
|
where->disabled = what.disabled;
|
||||||
where->pip = what.pip;
|
where->pip = what.pip;
|
||||||
|
Loading…
Reference in New Issue
Block a user