Re: Lua 5.1 (work6) now available (for loop bug)
[
Date Prev][
Date Next][
Thread Prev][
Thread Next]
[
Date Index]
[
Thread Index]
- Subject: Re: Lua 5.1 (work6) now available (for loop bug)
- From: Wim Couwenberg <wcou@...>
- Date: 2005年5月19日 17:09:43 +0200
I use Borland and added the following to luaconf.h
#elif !defined(__STRICT_ANSI__) && defined(__BORLANDC__) && defined(_M_IX86)
#define lua_number2int(i,d) __asm { \
fld d; \
fistp i; \
}
Seems to work fine... (It didn't solve my performance hit though.)
--
Wim