mirror of
https://github.com/raysan5/raylib.git
synced 2025-10-03 16:36:26 +00:00
Remove trailing spaces
This commit is contained in:
@@ -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);
|
||||
|
Reference in New Issue
Block a user