1
mirror of https://github.com/DarkFlippers/unleashed-firmware.git synced 2025-12-13 13:09:49 +04:00

Merge pull request #253 from teeebor/bugfix/solitaire-wrong-top-row-placement

Fix for solitaire card placement bug
This commit is contained in:
MX
2022-12-31 14:36:53 +03:00
committed by GitHub

View File

@@ -255,6 +255,10 @@ bool place_on_top(Card* where, Card what) {
int8_t b_letter = (int8_t)what.character;
if(a_letter == 12) a_letter = -1;
if(b_letter == 12) b_letter = -1;
if(where->disabled && b_letter != -1)
return false;
if((a_letter + 1) == b_letter) {
where->disabled = what.disabled;
where->pip = what.pip;