Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Jun 9, 2009, 4:29:42 PM (15 years ago)
Author:
rgrieder
Message:

Update to tolua 1.0.93

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/pch/src/tolua/tolua_to.c

    r1505 r3127  
    1818#include <stdlib.h>
    1919
    20 TOLUA_API double tolua_tonumber (lua_State* L, int narg, double def)
     20TOLUA_API lua_Number tolua_tonumber (lua_State* L, int narg, lua_Number def)
    2121{
    2222 return lua_gettop(L)<abs(narg) ? def : lua_tonumber(L,narg);
     
    7272}
    7373
    74 TOLUA_API double tolua_tofieldnumber (lua_State* L, int lo, int index, double def)
     74TOLUA_API lua_Number tolua_tofieldnumber (lua_State* L, int lo, int index, lua_Number def)
    7575{
    7676 double v;
Note: See TracChangeset for help on using the changeset viewer.