From f4e7ec209ec70f855999668e58c23b20227da84d Mon Sep 17 00:00:00 2001 From: Jonas Gunz Date: Sat, 16 Mar 2019 20:37:42 +0100 Subject: Fixed examples #4 --- example/3d.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'example/3d.cpp') 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; }; -- cgit v1.2.3