diff options
Diffstat (limited to 'src/resources/subimage.cpp')
-rw-r--r-- | src/resources/subimage.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/resources/subimage.cpp b/src/resources/subimage.cpp index 895bdc9a7..bc9b0794f 100644 --- a/src/resources/subimage.cpp +++ b/src/resources/subimage.cpp @@ -57,8 +57,8 @@ SubImage::SubImage(Image *parent, SDL_Surface *image, // Set up the rectangle. mBounds.x = static_cast<short>(x); mBounds.y = static_cast<short>(y); - mBounds.w = static_cast<Uint16>(width); - mBounds.h = static_cast<Uint16>(height); + mBounds.w = static_cast<uint16_t>(width); + mBounds.h = static_cast<uint16_t>(height); if (mParent) { mInternalBounds.x = mParent->mBounds.x; @@ -89,8 +89,8 @@ SubImage::SubImage(Image *parent, GLuint image, // Set up the rectangle. mBounds.x = static_cast<short>(x); mBounds.y = static_cast<short>(y); - mBounds.w = static_cast<Uint16>(width); - mBounds.h = static_cast<Uint16>(height); + mBounds.w = static_cast<uint16_t>(width); + mBounds.h = static_cast<uint16_t>(height); if (mParent) { mInternalBounds.x = mParent->mBounds.x; |