aboutsummaryrefslogtreecommitdiff
path: root/demos
diff options
context:
space:
mode:
authorcrupest <crupest@outlook.com>2022-06-09 21:25:29 +0800
committercrupest <crupest@outlook.com>2022-06-09 21:25:29 +0800
commit2c24f6a9706f6595961432c8a84da1b235c7acfb (patch)
treea4780199354b727d952857f317b8db6b3231b3d3 /demos
parentfb8454cc993871715fbb556e6cf63f07e698b4a7 (diff)
downloadcru-2c24f6a9706f6595961432c8a84da1b235c7acfb.tar.gz
cru-2c24f6a9706f6595961432c8a84da1b235c7acfb.tar.bz2
cru-2c24f6a9706f6595961432c8a84da1b235c7acfb.zip
...
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();