diff --git a/src/main.zig b/src/main.zig index 8806a72..b12f0ea 100644 --- a/src/main.zig +++ b/src/main.zig @@ -191,7 +191,7 @@ fn render(window: *seizer.Window) !void { const is_hovered = hovered_deck != null and hovered_deck.? == foundation; const color = if (is_hovered) [4]u8{ 0xA0, 0xFF, 0xA0, 0xFF } else [4]u8{ 0xFF, 0xFF, 0xFF, 0xFF }; - const pos = [2]f32{ + var pos = [2]f32{ @floatFromInt(margin), @floatFromInt(margin + ((margin + tile_size[1]) * (i + 1))), }; @@ -203,6 +203,7 @@ fn render(window: *seizer.Window) !void { .size = tile_sizef, .color = color, }); + pos[1] -= 0.25 * scalef; } } @@ -238,6 +239,8 @@ fn render(window: *seizer.Window) !void { const color = if (is_hovered) [4]u8{ 0xA0, 0xFF, 0xA0, 0xFF } else [4]u8{ 0xFF, 0xFF, 0xFF, 0xFF }; var pos = [2]f32{ @floatFromInt(margin), @floatFromInt(margin) }; + canvas.rect(pos, tile_sizef, .{ .color = color }); + for (draw_pile.items) |card| { const tile_id = if (!draw_pile_exhausted) card_tilemap.?.back else card_tilemap.?.getTileForCard(card); card_tilemap.?.tilesheet.renderTile(&canvas, tile_id, pos, .{