| 650 | |
| 651 | |
| 652 | static inline float checkTableFloat(lua_State* L, int table, int index) { |
| 653 | lua_pushint(L, index); |
| 654 | lua_gettable(L, table); |
| 655 | const float value = luaL_checkfloat(L, -1); |
| 656 | lua_pop(L, 1); |
| 657 | return value; |
| 658 | } |
| 659 | |
| 660 | //============================================================================// |
| 661 |
no test coverage detected