Hi,
after the last changes in trunk the Irrlicht Tech Demo won't compile any longer IF Irrklang is used
( #define USE_IRRKLANG in CDemo.h ).
IrrKlang-functions have a "const char *" as first parameter (e.g. play2D).
so
irrKlang->play2D( mediaPath + "IrrlichtTheme.ogg", true, false, true);
should be
irrKlang->play2D( (mediaPath + "IrrlichtTheme.ogg").c_str(), true, false, true);
[fixed]using IrrKlang with Tech Demo in trunk
Re: using IrrKlang with Tech Demo after last changes in trun
Thanks for report, should work now again I hope (admittedly I haven't IrrKlang installed myself...).
IRC: #irrlicht on irc.libera.chat
Code snippet repository: https://github.com/mzeilfelder/irr-playground-micha
Free racer made with Irrlicht: http://www.irrgheist.com/hcraftsource.htm
Code snippet repository: https://github.com/mzeilfelder/irr-playground-micha
Free racer made with Irrlicht: http://www.irrgheist.com/hcraftsource.htm
Re: [fixed]using IrrKlang with Tech Demo in trunk
Thanks for that, it was my fault
Library helping with network requests, tasks management, logger etc in desktop and mobile apps: https://github.com/GrupaPracuj/hermes