update file.write_bytes to support bytearray + bit_converter bytearray support
This commit is contained in:
@@ -141,10 +141,13 @@ static int l_file_write_bytes(lua::State* L) {
|
||||
|
||||
fs::path path = resolve_path(lua::require_string(L, pathIndex));
|
||||
|
||||
if (auto bytearray = lua::touserdata<lua::Bytearray>(L, -1)) {
|
||||
auto& bytes = bytearray->data();
|
||||
return lua::pushboolean(L, files::write_bytes(path, bytes.data(), bytes.size()));
|
||||
}
|
||||
|
||||
std::vector<ubyte> bytes;
|
||||
|
||||
int result = read_bytes_from_table(L, -1, bytes);
|
||||
|
||||
if(result != 1) {
|
||||
return result;
|
||||
} else {
|
||||
|
||||
Reference in New Issue
Block a user