about summary refs log tree commit diff
path: root/sol.c
diff options
context:
space:
mode:
Diffstat (limited to 'sol.c')
-rw-r--r--sol.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/sol.c b/sol.c
index 567bf7c..724aefd 100644
--- a/sol.c
+++ b/sol.c
@@ -224,9 +224,7 @@ static struct {
 	struct List drag;
 	struct Item dragItem;
 	uint backTexture;
-} layout = {
-	.backTexture = Cards_Back1,
-};
+} layout;
 
 static struct Item *layoutFind(const SDL_Point *point) {
 	for (uint i = layout.main.len - 1; i < layout.main.len; --i) {
@@ -456,6 +454,7 @@ int main(void) {
 	Cards_Free(cards);
 
 	srand(time(NULL));
+	layout.backTexture = Cards_Back1 + randUniform(12);
 	gameDeal();
 
 	for (;;) {