Commit b64028c1 authored by cutealien's avatar cutealien

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