automated snapshot

This commit is contained in:
sumi
2025-12-22 01:49:40 -06:00
parent 2f10e026a0
commit 407b0a9b0e
2 changed files with 3 additions and 1 deletions

View File

@@ -104,7 +104,7 @@ func (s *Storage) Save(capture *SketchCapture) (string, error) {
// capture full res layer
for i, layerImage := range capture.layerImages {
layerPng := filepath.Join(path, fmt.Sprintf("%s-%3d.png", kid, i))
layerPng := filepath.Join(path, fmt.Sprintf("%s-%03d.png", kid, i))
rl.ExportImage(*layerImage, layerPng)
}