summaryrefslogtreecommitdiffhomepage
path: root/examples/textures
diff options
context:
space:
mode:
authorRay <[email protected]>2020-03-02 00:09:05 +0100
committerRay <[email protected]>2020-03-02 00:09:05 +0100
commit117696a8936007592f7fe7c0b7b227a805e3b74a (patch)
tree412165479432828ceecc6d9939655a48e2c6ec6f /examples/textures
parent2f5a7ddcc6a5cbc16261d0cacb77ca9c0e972fc0 (diff)
downloadraylib-117696a8936007592f7fe7c0b7b227a805e3b74a.tar.gz
raylib-117696a8936007592f7fe7c0b7b227a805e3b74a.zip
Update textures_mouse_painting.c
Diffstat (limited to 'examples/textures')
-rw-r--r--examples/textures/textures_mouse_painting.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/textures/textures_mouse_painting.c b/examples/textures/textures_mouse_painting.c
index 0149176c..af1f3887 100644
--- a/examples/textures/textures_mouse_painting.c
+++ b/examples/textures/textures_mouse_painting.c
@@ -166,7 +166,7 @@ int main(void)
// Draw drawing circle for reference
if (mousePos.y > 50)
{
- if (IsMouseButtonDown(MOUSE_RIGHT_BUTTON)) DrawCircleLines(mousePos.x, mousePos.y, brushSize, colors[colorSelected]);
+ if (IsMouseButtonDown(MOUSE_RIGHT_BUTTON)) DrawCircleLines(mousePos.x, mousePos.y, brushSize, GRAY);
else DrawCircle(GetMouseX(), GetMouseY(), brushSize, colors[colorSelected]);
}