Test both overloads of DrawPoint()

This commit is contained in:
Dmitry Marakasov 2016-01-28 00:06:45 +03:00
parent a52555b927
commit 05ade606df

View File

@ -77,7 +77,7 @@ BEGIN_TEST(int, char*[])
renderer.DrawPoint(10, 10);
renderer.SetDrawColor(0, 255, 128);
renderer.DrawPoint(20, 20);
renderer.DrawPoint(Point(20, 20));
renderer.SetDrawColor(128, 0, 255);
Point points[] = { {30, 30} };