Are the download links still valid? I am not able to connect to http://shatten.sonores.de, at all.
My intention was to check the latest version of the template and see if it has same problem as the one shipped with AGS 3.2.1:
The "Quit" button on the Options gui sais "QuitätÖ" when using English translation (I have a feeling I reported this back in 2011).
Other than that, are you still planning on removing old-style Audio support? In my previous response I suggested using "#ifdef STRICT_AUDIO", but that's not a fully proper solution, because in AGS >=3.2 users may mix audio styles, e.g. turn backwards compatible mode to only use old-style functions in particular cases. Perhaps a new macro may be introduced, like "#define USE_OLD_AUDIO", which may only be enabled if STRICT_AUDIO is on:
Code: ags
My intention was to check the latest version of the template and see if it has same problem as the one shipped with AGS 3.2.1:
The "Quit" button on the Options gui sais "QuitätÖ" when using English translation (I have a feeling I reported this back in 2011).
Other than that, are you still planning on removing old-style Audio support? In my previous response I suggested using "#ifdef STRICT_AUDIO", but that's not a fully proper solution, because in AGS >=3.2 users may mix audio styles, e.g. turn backwards compatible mode to only use old-style functions in particular cases. Perhaps a new macro may be introduced, like "#define USE_OLD_AUDIO", which may only be enabled if STRICT_AUDIO is on:
#ifdef STRICT_AUDIO
#define USE_OLD_AUDIO // comment this line if you want this template essential functions use only new style audio
#endif