Fix byte to float color conversion in DisplayServerWindows::screen_get_pixel

(cherry picked from commit 9d45dd812f)
This commit is contained in:
kleonc 2023-07-11 21:30:50 +02:00 committed by Yuri Sizov
parent e34241a809
commit 053538c125
1 changed files with 1 additions and 1 deletions

View File

@ -618,7 +618,7 @@ Color DisplayServerWindows::screen_get_pixel(const Point2i &p_position) const {
COLORREF col = GetPixel(dc, p.x, p.y); COLORREF col = GetPixel(dc, p.x, p.y);
if (col != CLR_INVALID) { if (col != CLR_INVALID) {
ReleaseDC(NULL, dc); ReleaseDC(NULL, dc);
return Color(float(col & 0x000000FF) / 256.0, float((col & 0x0000FF00) >> 8) / 256.0, float((col & 0x00FF0000) >> 16) / 256.0, 1.0); return Color(float(col & 0x000000FF) / 255.0f, float((col & 0x0000FF00) >> 8) / 255.0f, float((col & 0x00FF0000) >> 16) / 255.0f, 1.0f);
} }
ReleaseDC(NULL, dc); ReleaseDC(NULL, dc);
} }