Browse Source

Made newDataView size optional

Engineer Smith 1 year ago
parent
commit
f8d86a78fc
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/modules/data/wrap_DataModule.cpp

+ 1 - 1
src/modules/data/wrap_DataModule.cpp

@@ -57,7 +57,7 @@ int w_newDataView(lua_State *L)
 	Data *data = luax_checkdata(L, 1);
 
 	lua_Integer offset = luaL_checkinteger(L, 2);
-	lua_Integer size = luaL_checkinteger(L, 3);
+	lua_Integer size = luaL_optinteger(L, 3, data->getSize() - offset);
 
 	if (offset < 0 || size < 0)
 		return luaL_error(L, "DataView offset and size must not be negative.");