fix(anime_cli): default gif loops to infinite

This commit is contained in:
Yaseen
2026-01-22 00:17:20 +05:00
parent 4b42071a77
commit 514aa7c179

View File

@@ -125,7 +125,7 @@ pub struct AnimeGif {
pub bright: f32,
#[argh(
option,
default = "1",
default = "0",
description = "how many loops to play - 0 is infinite"
)]
pub loops: u32,
@@ -144,7 +144,7 @@ pub struct AnimeGifDiagonal {
pub bright: f32,
#[argh(
option,
default = "1",
default = "0",
description = "how many loops to play - 0 is infinite"
)]
pub loops: u32,