aboutsummaryrefslogtreecommitdiff
path: root/example/3d.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'example/3d.cpp')
-rw-r--r--example/3d.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/example/3d.cpp b/example/3d.cpp
index 313b632..11a2d3d 100644
--- a/example/3d.cpp
+++ b/example/3d.cpp
@@ -29,10 +29,10 @@ public:
cc++;
drawText(std::to_string(cc), {2,2}, _COL_RED);
- drawPoint('Q', _pos, true, _COL_YELLOW);
+ drawPoint('Q', _pos, _COL_YELLOW);
}
- virtual void onChar(unsigned char _c) { drawPoint(_c, {1,1},true, _COL_BLUE); }
+ virtual void onChar(unsigned char _c) { drawPoint(_c, {1,1}, _COL_BLUE); }
private:
int cc;
};