Fixed warning C26451: Arithmetic overflow: Using operator '*' on a 4 byte value and then casting the result to a 8 byte value. Cast the value to the wider type before calling operator '*' to avoid overflow (io.2).

This commit is contained in:
Sam Lantinga
2023-12-04 20:59:43 -08:00
parent 41bfcad5d7
commit eab2d97d07

View File

@@ -345,7 +345,7 @@ static void SDL_TARGETING("mmx") BlitRGBtoRGBPixelAlphaMMX(SDL_BlitInfo *info)
}
multmask = 0x00FF;
multmask <<= (ashift * 2);
multmask <<= ((Uint64)ashift * 2);
multmask2 = 0x00FF00FF00FF00FFULL;
while (height--) {