Merge branch 'main' into dev

This commit is contained in:
MihailRis
2025-10-01 00:07:53 +03:00
23 changed files with 153 additions and 87 deletions
+1 -2
View File
@@ -33,8 +33,7 @@ static int l_tostring(lua::State* L) {
lua::pop(L);
return lua::pushlstring(L, buffer.data(), size);
} else {
lua::bytearray_as_string(L, 1);
return 1;
return lua::pushlstring(L, lua::bytearray_as_string(L, 1));
}
}