Changeset 534 for trunk/src/lua/lua_types.cc
- Timestamp:
- 01/12/17 14:41:17 (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/lua/lua_types.cc
r503 r534 1 // Copyright (C) 2016-201 6ChaosForge Ltd1 // Copyright (C) 2016-2017 ChaosForge Ltd 2 2 // http://chaosforge.org/ 3 3 // … … 85 85 { 86 86 int error; // proper type instead of sint32? 87 *(sint32*)object = lua_tointeger( lstate, index );87 *(sint32*)object = (sint32)lua_tointeger( lstate, index ); 88 88 return true; 89 89 }
Note: See TracChangeset
for help on using the changeset viewer.