Explorar el Código

Merge pull request #2088 from EngineerSmith/patch-1

Made love.data.newDataView size arg optional
Sasha Szpakowski hace 1 año
padre
commit
8d4be762b4
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  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.");