mirror of
https://github.com/raysan5/raylib.git
synced 2026-02-03 12:49:17 -05:00
Code formatting tweaks
This commit is contained in:
@ -191,10 +191,8 @@ int main(void)
|
|||||||
|
|
||||||
if (colorMouseHover >= 0) DrawRectangleRec(colorsRecs[colorMouseHover], Fade(WHITE, 0.6f));
|
if (colorMouseHover >= 0) DrawRectangleRec(colorsRecs[colorMouseHover], Fade(WHITE, 0.6f));
|
||||||
|
|
||||||
DrawRectangleLinesEx((Rectangle) {
|
DrawRectangleLinesEx((Rectangle){ colorsRecs[colorSelected].x - 2, colorsRecs[colorSelected].y - 2,
|
||||||
colorsRecs[colorSelected].x - 2, colorsRecs[colorSelected].y - 2,
|
colorsRecs[colorSelected].width + 4, colorsRecs[colorSelected].height + 4 }, 2, BLACK);
|
||||||
colorsRecs[colorSelected].width + 4, colorsRecs[colorSelected].height + 4
|
|
||||||
}, 2, BLACK);
|
|
||||||
|
|
||||||
// Draw save image button
|
// Draw save image button
|
||||||
DrawRectangleLinesEx(btnSaveRec, 2, btnSaveMouseHover ? RED : BLACK);
|
DrawRectangleLinesEx(btnSaveRec, 2, btnSaveMouseHover ? RED : BLACK);
|
||||||
|
|||||||
Reference in New Issue
Block a user