Commit b5605d2b authored by bitplane's avatar bitplane

Fixed a broken define

git-svn-id: svn://svn.code.sf.net/p/irrlicht/code/trunk@2238 dfc29bdd-3216-0410-991c-e03cc46cb475
parent fd088d68
...@@ -378,7 +378,7 @@ void CIrrDeviceConsole::setTextCursorPos(s16 x, s16 y) ...@@ -378,7 +378,7 @@ void CIrrDeviceConsole::setTextCursorPos(s16 x, s16 y)
Position.X = x; Position.X = x;
Position.Y = y; Position.Y = y;
SetConsoleCursorPosition(WindowsSTDOut, Position); SetConsoleCursorPosition(WindowsSTDOut, Position);
#elif _IRR_VT100_CONSOLE_ #elif defined(_IRR_VT100_CONSOLE_)
// send escape code // send escape code
printf("%c[%d;%dH", 27, y, x); printf("%c[%d;%dH", 27, y, x);
#else #else
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment