internal/atlas: bug fix: wrong size setting

This commit is contained in:
Hajime Hoshi 2023-02-28 13:19:27 +09:00
parent 818e27302c
commit 5e4652c4f8

View File

@ -32,8 +32,8 @@ var (
) )
func SetImageSizeForTesting(min, max int) { func SetImageSizeForTesting(min, max int) {
oldMinSize = min oldMinSize = minSize
oldMaxSize = max oldMaxSize = maxSize
minSize = min minSize = min
maxSize = max maxSize = max
} }