diff options
author | rubidium <rubidium@openttd.org> | 2014-09-06 17:20:45 +0000 |
---|---|---|
committer | rubidium <rubidium@openttd.org> | 2014-09-06 17:20:45 +0000 |
commit | 7a00d2e8493913b3520e431b4e31b6688b3f79f5 (patch) | |
tree | 24771ee9d209d311747b3279bb0f27999af864b9 /src/3rdparty | |
parent | e76e6efd177c97d24062e82028174fc3c33c5600 (diff) | |
download | openttd-7a00d2e8493913b3520e431b4e31b6688b3f79f5.tar.xz |
(svn r26769) -Codechange [Squirrel]: remove the difference between some platforms having wchar for SQChar and others just char; always use char (and UTF-8) like in the rest of (internal) OpenTTD
Diffstat (limited to 'src/3rdparty')
-rw-r--r-- | src/3rdparty/squirrel/include/squirrel.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/3rdparty/squirrel/include/squirrel.h b/src/3rdparty/squirrel/include/squirrel.h index 6da1f744d..650edbe59 100644 --- a/src/3rdparty/squirrel/include/squirrel.h +++ b/src/3rdparty/squirrel/include/squirrel.h @@ -89,9 +89,9 @@ struct SQClass; struct SQInstance; struct SQDelegable; -#ifdef _UNICODE -#define SQUNICODE -#endif +//#ifdef _UNICODE +//#define SQUNICODE +//#endif #ifdef SQUNICODE #if (defined(_MSC_VER) && _MSC_VER >= 1400) // 1400 = VS8 |