aboutsummaryrefslogtreecommitdiff
path: root/demos
diff options
context:
space:
mode:
Diffstat (limited to 'demos')
-rw-r--r--demos/graphics/DrawCircle.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/demos/graphics/DrawCircle.cpp b/demos/graphics/DrawCircle.cpp
index 13a7367a..61b4bd81 100644
--- a/demos/graphics/DrawCircle.cpp
+++ b/demos/graphics/DrawCircle.cpp
@@ -16,7 +16,7 @@ int main() {
{
auto brush =
- graphics_factory->CreateSolidColorBrush(cru::platform::colors::black);
+ graphics_factory->CreateSolidColorBrush(cru::platform::colors::skyblue);
auto painter = image->CreatePainter();
painter->FillEllipse(cru::platform::Rect{200, 200, 100, 100}, brush.get());
painter->EndDraw();