diff options
Diffstat (limited to 'src/resources/image.cpp')
-rw-r--r-- | src/resources/image.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/resources/image.cpp b/src/resources/image.cpp index 5176ec7a..f5082c60 100644 --- a/src/resources/image.cpp +++ b/src/resources/image.cpp @@ -158,11 +158,11 @@ Image* Image::load(void *buffer, unsigned int bufferSize, int height = tmpImage->h; int realWidth = 1, realHeight = 1; - while (realWidth < width && realWidth < 2048) { + while (realWidth < width && realWidth < 1024) { realWidth *= 2; } - while (realHeight < height && realHeight < 2048) { + while (realHeight < height && realHeight < 1024) { realHeight *= 2; } |