Remove trailing spaces

This commit is contained in:
Ray
2021-10-14 00:11:37 +02:00
parent 83b3478fe4
commit 3e604a8645
3 changed files with 6 additions and 6 deletions

View File

@@ -3825,9 +3825,9 @@ Color GetPixelColor(void *srcPtr, int format)
color.g = (unsigned char)(((float *)srcPtr)[0]*255.0f);
color.b = (unsigned char)(((float *)srcPtr)[0]*255.0f);
color.a = 255;
} break;
case PIXELFORMAT_UNCOMPRESSED_R32G32B32:
case PIXELFORMAT_UNCOMPRESSED_R32G32B32:
{
// NOTE: Pixel normalized float value is converted to [0..255]
color.r = (unsigned char)(((float *)srcPtr)[0]*255.0f);