LibCards: Move Play cards closer together horizontally

With the recent adjustments to how cards are painted, this felt too
spaced out.
This commit is contained in:
Sam Atkins 2023-10-03 17:25:54 +01:00 committed by Sam Atkins
commit 2e615b5316
Notes: sideshowbarker 2024-07-17 02:14:39 +09:00

View file

@ -79,7 +79,7 @@ private:
case Type::Waste:
return { 0, 0, 1, 0 };
case Type::Play:
return { 20, 0, 1, 0 };
return { 15, 0, 1, 0 };
default:
return {};
}