diff options
author | Darkvater <darkvater@openttd.org> | 2006-11-28 14:12:09 +0000 |
---|---|---|
committer | Darkvater <darkvater@openttd.org> | 2006-11-28 14:12:09 +0000 |
commit | 0693970c7c61a7ff5bd5c55af347742fb87ae1d8 (patch) | |
tree | ecd44c260a67f0d8745adf02994ad19ff51fbb8f | |
parent | 470c383738d84b9e2e1e202fec2633d10f6e1712 (diff) | |
download | openttd-0693970c7c61a7ff5bd5c55af347742fb87ae1d8.tar.xz |
(svn r7271) -Codechange: Revert the strtolower part of r7199 as it can actually become broken due to
different codepages. See comments for strtolower function for more information.
-rw-r--r-- | string.c | bin | 6109 -> 12314 bytes | |||
-rw-r--r-- | string.h | 2 |
2 files changed, 1 insertions, 1 deletions
Binary files differ @@ -43,7 +43,7 @@ typedef enum CharSetFilter { CS_ALPHA, //! Only alphabetic values } CharSetFilter; -/** Convert the given string to lowercase */ +/** Convert the given string to lowercase, only works with ASCII! */ void strtolower(char *str); typedef uint32 WChar; |