Fix type in define-check which caused newFontTool to output wrong message on Windows.

git-svn-id: svn://svn.code.sf.net/p/irrlicht/code/trunk@4256 dfc29bdd-3216-0410-991c-e03cc46cb475
master
cutealien 2012-07-21 16:32:44 +00:00
parent f6985825f3
commit b64028c167
1 changed files with 2 additions and 2 deletions

View File

@ -73,8 +73,8 @@ const wchar_t *helptext = L"This tool creates bitmap fonts for the Irrlicht Engi
L"That's all, have fun :-)";
#ifdef _IRR_WINDOWS
const wchar_t *completeText = L"Font created"
#ifdef _IRR_WINDOWS_
const wchar_t *completeText = L"Font created";
#else
const wchar_t *completeText = L"Font created\n\n"
L"Please note that anti-aliasing under X11 is controlled by the system "