diff options
author | rubidium <rubidium@openttd.org> | 2013-02-02 19:46:46 +0000 |
---|---|---|
committer | rubidium <rubidium@openttd.org> | 2013-02-02 19:46:46 +0000 |
commit | 2e20291a3d565fdb7444cd55d9773ab264ff0999 (patch) | |
tree | b318ae51424ef897798f0e06dbfd70279594e3a2 | |
parent | 4a9e710fa71ede34d34b8cc98cda61be73a1c6c5 (diff) | |
download | openttd-2e20291a3d565fdb7444cd55d9773ab264ff0999.tar.xz |
(svn r24957) -Document [FS#5349]: newlines and other special characters are removed/converted
-rw-r--r-- | src/script/api/script_log.hpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/script/api/script_log.hpp b/src/script/api/script_log.hpp index a95e1ccbf..def37c938 100644 --- a/src/script/api/script_log.hpp +++ b/src/script/api/script_log.hpp @@ -53,18 +53,21 @@ public: /** * Print an Info message to the logs. * @param message The message to log. + * @note Special characters such as U+0000-U+0019 and U+E000-U+E1FF are not supported and removed or replaced by a question mark. This includes newlines and tabs. */ static void Info(const char *message); /** * Print a Warning message to the logs. * @param message The message to log. + * @note Special characters such as U+0000-U+0019 and U+E000-U+E1FF are not supported and removed or replaced by a question mark. This includes newlines and tabs. */ static void Warning(const char *message); /** * Print an Error message to the logs. * @param message The message to log. + * @note Special characters such as U+0000-U+0019 and U+E000-U+E1FF are not supported and removed or replaced by a question mark. This includes newlines and tabs. */ static void Error(const char *message); |