mirror of
https://github.com/4sval/FModel.git
synced 2026-09-21 07:54:39 -05:00
fixed bad statement
This commit is contained in:
@@ -599,7 +599,7 @@ namespace FModel.ViewModels
|
||||
var width = img.Width;
|
||||
var heigth = img.Height;
|
||||
|
||||
while (width < UPSCALE_SIZE || heigth < UPSCALE_SIZE)
|
||||
while (width < UPSCALE_SIZE && heigth < UPSCALE_SIZE)
|
||||
{
|
||||
width *= 2;
|
||||
heigth *= 2;
|
||||
|
||||
Reference in New Issue
Block a user