Code: Select all
#ifdef CEGUI_BIDI_SUPPORT
renderTextBidi(wlf, visual_text, text_area, text_offset);
#else
renderTextNoBidi(wlf, visual_text, text_area, text_offset);
#endif
"CEGUI_BIDI_SUPPORT" is only defined in "Config.h.in":
Code: Select all
#cmakedefine CEGUI_BIDI_SUPPORT
However, it's never defined in the CMake files, therefore will never be defined in "Config.h", or anywhere. Shouldn't it be defined if and only if "CEGUI_USE_MINIBIDI" is true or "CEGUI_USE_FRIBIDI" is true?