From 7d12db87b7656e70eb9205454ce9ed4bd6665bf1 Mon Sep 17 00:00:00 2001 From: Sam Hocevar Date: Sun, 30 Sep 2007 11:28:13 +0000 Subject: [PATCH] * Replaced deprecated cucul_rotate() call with cucul_rotate_180(). --- cxx/cucul++.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cxx/cucul++.cpp b/cxx/cucul++.cpp index 0f35315..e80d838 100644 --- a/cxx/cucul++.cpp +++ b/cxx/cucul++.cpp @@ -153,7 +153,7 @@ void Cucul::Flop() void Cucul::Rotate() { - cucul_rotate(cv); + cucul_rotate_180(cv); } void Cucul::drawLine(int x1, int y1, int x2, int y2, unsigned long int ch)