diff options
author | Pixel <pixel@nobis-crew.org> | 2009-11-08 06:58:38 +0100 |
---|---|---|
committer | Pixel <pixel@nobis-crew.org> | 2009-11-08 06:58:38 +0100 |
commit | 7faa2287f696145c8f9b470d5f04099479822ea4 (patch) | |
tree | 3f4cc0c642854cb21c32f9e65a557e9bd84ccabf /im/src/lua5/imlua_convert.c | |
parent | 8c113c5c6336105b752bb34a832673a48a903a32 (diff) |
Getting rid of more bytecode crap, and turning on debug mode.
Diffstat (limited to 'im/src/lua5/imlua_convert.c')
-rwxr-xr-x | im/src/lua5/imlua_convert.c | 18 |
1 files changed, 1 insertions, 17 deletions
diff --git a/im/src/lua5/imlua_convert.c b/im/src/lua5/imlua_convert.c index c2c56d9..3c3f146 100755 --- a/im/src/lua5/imlua_convert.c +++ b/im/src/lua5/imlua_convert.c @@ -76,21 +76,5 @@ void imlua_open_convert (lua_State *L) { /* "im" table is at the top of the stack */ luaL_register(L, NULL, imconvert_lib); -#ifdef TEC_BIGENDIAN -#ifdef TEC_64 -#include "loh/im_convert_be64.loh" -#else -#include "loh/im_convert_be32.loh" -#endif -#else -#ifdef TEC_64 -#ifdef WIN64 -#include "loh/im_convert_le64w.loh" -#else -#include "loh/im_convert_le64.loh" -#endif -#else -#include "loh/im_convert.loh" -#endif -#endif +#include "clua/im_convert.clua" } |